1
0
Fork 0
mirror of https://github.com/Luzifer/preserve.git synced 2024-11-08 14:20:05 +00:00
preserve/Dockerfile

36 lines
646 B
Text
Raw Permalink 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 --no-cache \
git \
2020-06-14 00:09:06 +00:00
&& go install \
-ldflags "-s -w -X main.version=$(git describe --tags --always || echo dev)" \
-mod=readonly \
-trimpath
2020-06-14 00:09:06 +00:00
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"]
USER 1000
2020-06-14 00:09:06 +00:00
ENTRYPOINT ["/usr/local/bin/preserve"]
CMD ["--"]
# vim: set ft=Dockerfile: