1
0
Fork 0
mirror of https://github.com/Luzifer/vault-openvpn.git synced 2024-11-08 16:20:05 +00:00

Adds Dockerfile

This commit is contained in:
jasongwartz 2017-11-10 11:43:50 +01:00
parent 20f71abb83
commit 98a662c511

19
Dockerfile Normal file
View file

@ -0,0 +1,19 @@
# Usage:
# docker run --rm -it -e VAULT_ADDR='<URL>:8200' -e VAULT_TOKEN='<TOKEN>' jasongwartz/vault-openvpn <command>
# Example:
# docker run --rm -it -e VAULT_ADDR='https://myvault.example.com:8200' -e VAULT_TOKEN='fdas-fdasf-fdsa-23t-das' jasongwartz/vault-openvpn --pki-mountpoint vault-pki list
FROM golang:alpine
WORKDIR /go/src/vault-openvpn
COPY . .
RUN apk update && apk add git curl
ENV GOBIN=$GOPATH/bin
RUN go-wrapper download
RUN go-wrapper install
RUN curl https://raw.githubusercontent.com/Luzifer/vault-openvpn/master/example/openvpn-sample/client.conf > client.conf
RUN curl https://raw.githubusercontent.com/Luzifer/vault-openvpn/master/example/openvpn-sample/server.conf > server.conf
ENTRYPOINT ["vault-openvpn"]