1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-19 10:22:56 +00:00
password/Dockerfile
Knut Ahlers 37128b5f38
Update Dockerfile
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-12-30 11:26:15 +01:00

27 lines
567 B
Docker

FROM golang:alpine as builder
COPY . /go/src/github.com/Luzifer/password
WORKDIR /go/src/github.com/Luzifer/password
RUN set -ex \
&& 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 ["/usr/local/bin/password"]
CMD ["--"]
# vim: set ft=Dockerfile: