docker-VPN-client/Dockerfile

9 lines
325 B
Docker
Raw Normal View History

2019-12-05 15:54:49 +00:00
FROM debian:buster
2019-01-01 15:14:41 +00:00
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"]