move to gitea actions

This commit is contained in:
Sebastian Hugentobler 2023-12-14 10:03:55 +01:00
parent 6170fbca8f
commit e204c8b155
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
3 changed files with 13 additions and 12 deletions

18
Containerfile Normal file
View file

@ -0,0 +1,18 @@
FROM docker.io/golang:1.13.14-alpine AS builder
RUN apk --no-cache add \
git \
make
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 make
FROM docker.io/thallian/alpine-s6:3.19-3.1.6.2
COPY --from=builder /go/src/github.com/kelseyhightower/confd/bin/confd /bin/confd
ADD /rootfs /