diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e545048 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +FROM ubuntu:18.04 +LABEL maintainer "Mehran " + + +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"]