1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-20 02:42:57 +00:00
password/Dockerfile

17 lines
403 B
Docker
Raw Normal View History

FROM golang:alpine
2015-05-02 13:50:32 +00:00
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
2015-05-02 13:50:32 +00:00
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
2015-05-02 13:50:32 +00:00
EXPOSE 3000
ENTRYPOINT ["/go/bin/password"]
CMD ["--"]