mirror of
https://github.com/Luzifer/automail.git
synced 2024-12-20 21:11:20 +00:00
30 lines
638 B
Docker
30 lines
638 B
Docker
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:
|