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:
parent
f7965b7062
commit
cc3e001c14
1 changed files with 18 additions and 0 deletions
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…
Add table
Reference in a new issue