infrastructure/app/email/build/alps/Dockerfile

20 lines
549 B
Docker
Raw Normal View History

2020-12-04 12:42:20 +00:00
FROM golang:1.15.6-buster as builder
ARG VERSION
ENV CGO_ENABLED=0 GOOS=linux GOARCH=amd64
WORKDIR /tmp/alps
RUN git init && \
git remote add origin https://git.deuxfleurs.fr/Deuxfleurs/alps.git && \
2020-12-04 12:42:20 +00:00
git fetch --depth 1 origin ${VERSION} && \
git checkout FETCH_HEAD
RUN go build -a -o /usr/local/bin/alps ./cmd/alps
2020-12-04 12:42:20 +00:00
FROM scratch
COPY --from=builder /usr/local/bin/alps /alps
COPY --from=builder /tmp/alps/themes /themes
2021-03-08 16:49:22 +00:00
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
2020-12-04 12:42:20 +00:00
ENTRYPOINT ["/alps"]