upgrade to go 1.24.3

This commit is contained in:
Rui Lopes 2025-06-06 07:12:40 +00:00
parent 2829bfa4ad
commit 3aaef8f9e8
1 changed files with 3 additions and 3 deletions

View File

@ -61,17 +61,17 @@ EOF
cat >go.mod <<'EOF'
module example.com/go-hello
go 1.20
go 1.24.3
EOF
cat >Dockerfile <<'EOF'
FROM golang:1.20-bullseye as builder
FROM golang:1.24.3-bookworm as builder
WORKDIR /app
COPY go.* main.go ./
RUN CGO_ENABLED=0 go build -ldflags="-s"
# NB we use the buster-slim (instead of scratch) image so we
# can enter the container to execute bash etc.
FROM debian:bullseye-slim
FROM debian:bookworm-slim
COPY --from=builder /app/go-hello .
WORKDIR /
EXPOSE 8000