added Dockerfile
Dockerfile
This commit is contained in:
parent
f7965b7062
commit
cc3e001c14
18
Dockerfile
Normal file
18
Dockerfile
Normal 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"]
|
||||
Loading…
Reference in New Issue
Block a user