1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-11-08 17:30:10 +00:00
password/Dockerfile

27 lines
574 B
Text
Raw Permalink Normal View History

FROM golang:alpine as builder
2015-05-02 13:50:32 +00:00
COPY . /src/github.com/Luzifer/password
WORKDIR /src/github.com/Luzifer/password/cmd/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
2015-05-02 13:50:32 +00:00
EXPOSE 3000
ENTRYPOINT ["/usr/local/bin/password"]
CMD ["--"]
# vim: set ft=Dockerfile: