1
0
Fork 0
mirror of https://github.com/Nyr/openvpn-install.git synced 2025-04-06 14:13:31 +03:00
openvpn-install/Dockerfile
Mehran cc3e001c14
added Dockerfile
Dockerfile
2018-11-28 16:17:46 +03:30

18 lines
368 B
Docker

FROM ubuntu:18.04
LABEL maintainer "Mehran <it@mehran.co>"
RUN apt-get update && apt-get install -y \
wget \
software-properties-common \
net-tools \
curl \
iproute2 \
iptables \
--no-install-recommends \
&& mkdir openvpn && cd openvpn \
&& wget https://git.io/vpn -O openvpn-install.sh
WORKDIR /openvpn
ENTRYPOINT ["bash"]