From 7d5e6fc711bf6605191056490162fa75b2c8f677 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Mon, 27 May 2024 10:39:29 +0200 Subject: [PATCH] use alpine 3.20 --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 3fc4021..d693357 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/golang:1.21-alpine3.19 AS builder +FROM docker.io/golang:1.22-alpine3.20 AS builder RUN apk --no-cache add \ git \ @@ -11,7 +11,7 @@ WORKDIR $GOPATH/src/github.com/kelseyhightower/confd RUN git checkout 919444eb6cf721d198b2bb18581d0f0b3734d107 RUN make -FROM docker.io/thallian/alpine-s6:3.19-3.1.6.2 +FROM docker.io/thallian/alpine-s6:3.20-3.1.6.2 COPY --from=builder /go/src/github.com/kelseyhightower/confd/bin/confd /bin/confd