forked from kylemanna/docker-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
32 lines (22 loc) · 922 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Original credit: https://github.com/jpetazzo/dockvpn &
# https://github.com/kylemanna/docker-openvpn
FROM ubuntu:trusty
MAINTAINER Jussi Nummelin <[email protected]>
RUN apt-get update && \
apt-get install -y openvpn iptables git-core netmask && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Update checkout to use tags when v3.0 is finally released
RUN git clone --depth 1 --branch v3.0.0-rc2 https://github.com/OpenVPN/easy-rsa.git /usr/local/share/easy-rsa && \
ln -s /usr/local/share/easy-rsa/easyrsa3/easyrsa /usr/local/bin
# Needed by scripts
ENV OPENVPN /etc/openvpn
ENV EASYRSA /usr/local/share/easy-rsa/easyrsa3
ENV EASYRSA_PKI $OPENVPN/pki
ENV EASYRSA_VARS_FILE $OPENVPN/vars
VOLUME ["/etc/openvpn"]
# Internally uses port 443, remap using docker
EXPOSE 443/tcp
WORKDIR /etc/openvpn
CMD ["start_vpn.sh"]
ADD ./bin /usr/local/bin
RUN chmod a+x /usr/local/bin/*