9 lines
325 B
Docker
9 lines
325 B
Docker
FROM debian:buster
|
|
MAINTAINER yohan <783b8c87@scimetis.net>
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
RUN apt-get update && apt-get -y install openvpn procps iptables
|
|
RUN mv /etc/openvpn/openvpn.conf /etc/openvpn/openvpn.conf-bak || true
|
|
COPY entrypoint.sh /root/
|
|
RUN chmod +x /root/entrypoint.sh
|
|
ENTRYPOINT ["/root/entrypoint.sh"]
|