1
0
mirror of https://github.com/Luzifer/vault-openvpn.git synced 2024-09-19 01:22:57 +00:00

Add dockerized version

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2017-11-10 21:05:34 +01:00
parent 20f71abb83
commit 22501ea1ac
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM golang:alpine
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
ADD . /go/src/github.com/Luzifer/vault-openvpn
WORKDIR /go/src/github.com/Luzifer/vault-openvpn
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
WORKDIR /go/src/github.com/Luzifer/vault-openvpn/example/openvpn-sample
ENTRYPOINT ["/go/bin/vault-openvpn"]
CMD ["--"]