1
0
mirror of https://github.com/Luzifer/preserve.git synced 2024-09-20 08:52:55 +00:00
preserve/Dockerfile

31 lines
600 B
Docker
Raw Normal View History

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