openvpn-docker/Dockerfile

9 lines
267 B
Docker
Raw Permalink Normal View History

2024-08-24 21:05:07 +02:00
FROM alpine:latest
RUN apk --update add bash openvpn iptables easy-rsa ncurses && rm -rf /var/cache/apk/*
RUN ln -s /usr/share/easy-rsa/easyrsa /usr/bin/easyrsa
COPY ./entrypoint.sh /entrypoint.sh
COPY ./clientmgmt /usr/bin/clientmgmt
ENTRYPOINT ["/entrypoint.sh"]