fix: use go 1.25 for docker build

This commit is contained in:
2026-04-27 18:21:07 +02:00
parent ed30b8ab43
commit 48c1e4cc38

View File

@@ -1,4 +1,4 @@
FROM golang:1.24-bullseye AS builder
FROM golang:1.25-bookworm AS builder
WORKDIR /app
@@ -36,7 +36,7 @@ RUN sqlc generate
# Build the server and CLI tools
RUN go build -o main_server ./cmd/server
FROM debian:bullseye-slim
FROM debian:bookworm-slim
WORKDIR /app