infrastructure/app/email/build/alps/Dockerfile

19 lines
459 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
ENTRYPOINT ["/alps"]