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

Add dockerized version

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-06-27 15:36:11 +02:00
parent fc0f6da629
commit 3ceebba612
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

30
Dockerfile Normal file
View file

@ -0,0 +1,30 @@
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: