From 54ad00ee3bccbdc07d2a1366ee797b5b68fce0bc Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sun, 4 Jan 2026 12:40:43 +0000 Subject: [PATCH] feat(dependencies): upgrade to Golang 1.23 and Debian 13 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 287a642..b85bec3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 " LABEL org.opencontainers.image.source="https://gitlab.com/luketainton/insultgen" COPY --from=build /go/bin/app /