From aa6be60bc8f897b2374a291987d3a2940da775a5 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Thu, 14 Dec 2023 10:24:15 +0100 Subject: [PATCH] use dev version --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index c7131f3..3fc4021 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/golang:1.13.14-alpine AS builder +FROM docker.io/golang:1.21-alpine3.19 AS builder RUN apk --no-cache add \ git \ @@ -8,7 +8,7 @@ RUN mkdir -p $GOPATH/src/github.com/kelseyhightower RUN git clone https://github.com/kelseyhightower/confd.git $GOPATH/src/github.com/kelseyhightower/confd WORKDIR $GOPATH/src/github.com/kelseyhightower/confd -RUN git checkout v0.16.0 +RUN git checkout 919444eb6cf721d198b2bb18581d0f0b3734d107 RUN make FROM docker.io/thallian/alpine-s6:3.19-3.1.6.2