feat(dependencies): upgrade to Golang 1.23 and Debian 13
All checks were successful
Snyk / security (push) Successful in 12s

This commit is contained in:
2026-01-04 12:40:43 +00:00
parent 6948e62e18
commit 54ad00ee3b

View File

@@ -1,9 +1,9 @@
FROM golang:1.17-alpine as build
FROM golang:1.23-alpine as build
WORKDIR /go/src/app
COPY . /go/src/app
RUN CGO_ENABLED=0 go build -o /go/bin/app
FROM gcr.io/distroless/base-debian11
FROM gcr.io/distroless/base-debian13
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://gitlab.com/luketainton/insultgen"
COPY --from=build /go/bin/app /