1
0
Fork 0
mirror of https://github.com/Nyr/openvpn-install.git synced 2025-04-05 05:33:30 +03:00

added Dockerfile

Dockerfile
This commit is contained in:
Mehran 2018-11-28 16:17:46 +03:30 committed by GitHub
parent f7965b7062
commit cc3e001c14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
Dockerfile Normal file
View file

@ -0,0 +1,18 @@
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"]