From 3883f417d292384ab89b069a1d671e7d4f9d093f Mon Sep 17 00:00:00 2001 From: Finn Date: Sun, 18 Feb 2024 14:52:28 -0800 Subject: [PATCH] bump containerfile --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 4f1f21b..042c867 100644 --- a/Containerfile +++ b/Containerfile @@ -1,9 +1,9 @@ -FROM library/golang:1.20 as build +FROM library/golang:1.21 as build ADD * /go/caching-proxy/ WORKDIR /go/caching-proxy ARG GOPROXY=direct RUN CGO_ENABLED=0 go build . -FROM gcr.io/distroless/base-debian11 +FROM gcr.io/distroless/base-debian12 COPY --from=build /go/caching-proxy/caching-proxy /caching-proxy ENTRYPOINT ["/caching-proxy"]