use newer base image

This commit is contained in:
Sebastian Hugentobler 2022-07-12 18:36:19 +02:00
parent 27bd707230
commit 8e99da417d

View File

@ -1,4 +1,4 @@
FROM golang:1.13.14-alpine AS builder FROM docker.io/golang:1.13.14-alpine AS builder
RUN apk --no-cache add \ RUN apk --no-cache add \
git \ git \
@ -11,7 +11,7 @@ WORKDIR $GOPATH/src/github.com/kelseyhightower/confd
RUN git checkout v0.16.0 RUN git checkout v0.16.0
RUN make RUN make
FROM thallian/alpine-s6:latest FROM docker.io/thallian/alpine-s6:3.16
COPY --from=builder /go/src/github.com/kelseyhightower/confd/bin/confd /bin/confd COPY --from=builder /go/src/github.com/kelseyhightower/confd/bin/confd /bin/confd