13 lines
192 B
Docker
13 lines
192 B
Docker
|
FROM alpine:latest
|
||
|
# LABEL maintainer=""
|
||
|
|
||
|
RUN set -ex; \
|
||
|
\
|
||
|
apk --no-cache add \
|
||
|
easy-rsa \
|
||
|
; \
|
||
|
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin;
|
||
|
|
||
|
WORKDIR "/opt/openvpn"
|
||
|
|