1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-11-09 09:50:07 +00:00

Update Dockerfile

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-12-30 11:26:15 +01:00
parent 78cab7a245
commit 37128b5f38
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -1,16 +1,26 @@
FROM golang:alpine
FROM golang:alpine as builder
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
ADD . /go/src/github.com/Luzifer/password
COPY . /go/src/github.com/Luzifer/password
WORKDIR /go/src/github.com/Luzifer/password
RUN set -ex \
&& apk add --update git ca-certificates \
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
&& apk del --purge git
&& apk add --update git \
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)"
FROM alpine:latest
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
RUN set -ex \
&& apk --no-cache add \
ca-certificates \
mailcap
COPY --from=builder /go/bin/password /usr/local/bin/password
EXPOSE 3000
ENTRYPOINT ["/go/bin/password"]
ENTRYPOINT ["/usr/local/bin/password"]
CMD ["--"]
# vim: set ft=Dockerfile: