openvpn-docker/Dockerfile
2024-08-24 21:05:07 +02:00

9 lines
267 B
Docker

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"]