mirror of
https://github.com/Luzifer/vault-otp-ui.git
synced 2024-11-08 08:10:11 +00:00
16 lines
415 B
Docker
16 lines
415 B
Docker
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 ["--"]
|