1
0
Fork 0
mirror of https://github.com/Luzifer/automail.git synced 2024-12-20 13:01:20 +00:00
automail/Dockerfile

31 lines
638 B
Text
Raw Permalink Normal View History

FROM golang:alpine as builder
COPY . /go/src/github.com/Luzifer/automail
WORKDIR /go/src/github.com/Luzifer/automail
RUN set -ex \
&& apk add --update git \
&& go install \
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
-mod=readonly
FROM alpine:latest
ENV CONFIG=/data/config.yml \
STORAGE_FILE=/data/automail_store.yml
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
RUN set -ex \
&& apk --no-cache add \
ca-certificates
COPY --from=builder /go/bin/automail /usr/local/bin/automail
VOLUME ["/data"]
ENTRYPOINT ["/usr/local/bin/automail"]
CMD ["--"]
# vim: set ft=Dockerfile: