1
0
mirror of https://github.com/Luzifer/vault-otp-ui.git synced 2024-09-19 00:53:01 +00:00
vault-otp-ui/Dockerfile

17 lines
415 B
Docker
Raw Normal View History

FROM golang:alpine
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
ADD . /go/src/github.com/Luzifer/vault-otp-ui
WORKDIR /go/src/github.com/Luzifer/vault-otp-ui
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/vault-otp-ui"]
CMD ["--"]