8 lines
365 B
Docker
8 lines
365 B
Docker
|
FROM alpine:3.11
|
||
|
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \
|
||
|
apk add --update bash openvpn easy-rsa && \
|
||
|
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \
|
||
|
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/*
|
||
|
COPY .werffiles /etc/openvpn/setup
|
||
|
RUN chmod +x /etc/openvpn/setup/configure.sh
|