1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-19 18:32:57 +00:00
password/Dockerfile
Knut Ahlers 8930153256
Update Dockerfile to golang:alpine template
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-09-22 15:27:18 +02:00

17 lines
403 B
Docker

FROM golang:alpine
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
ADD . /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
EXPOSE 3000
ENTRYPOINT ["/go/bin/password"]
CMD ["--"]