Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN bun run build
# -----------------------------------------------------------------------------
# Stage 2: build the Go binary with the SPA embedded
# -----------------------------------------------------------------------------
FROM golang:1.26 AS builder
FROM golang:1.27 AS builder
WORKDIR /build
COPY backend/go.mod backend/go.sum ./
RUN go mod download
Expand Down
2 changes: 1 addition & 1 deletion Containerfile.migrate
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
# Build context is the repository root.

FROM golang:1.26 AS builder
FROM golang:1.27 AS builder
WORKDIR /build
COPY backend/go.mod backend/go.sum ./
RUN go mod download
Expand Down
Loading