You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
420 B
7 lines
420 B
FROM alpine:3.13
|
|
RUN apk add --update bash openvpn easy-rsa && \
|
|
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \
|
|
wget https://github.com/pashcovich/openvpn-user/releases/download/v1.0.3-rc.1/openvpn-user-linux-amd64.tar.gz -O - | tar xz -C /usr/local/bin && \
|
|
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/*
|
|
COPY setup/ /etc/openvpn/setup
|
|
RUN chmod +x /etc/openvpn/setup/configure.sh
|
|
|