mirror of
https://github.com/Luzifer/vault-openvpn.git
synced 2024-11-09 08:40:04 +00:00
Add dockerized version
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
20f71abb83
commit
22501ea1ac
1 changed files with 16 additions and 0 deletions
16
Dockerfile
Normal file
16
Dockerfile
Normal 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 ["--"]
|
Loading…
Reference in a new issue