Skip to content
This repository was archived by the owner on Jun 15, 2021. It is now read-only.

Commit da50fb0

Browse files
authored
Merge pull request #102 from linuxserver/fixbuild-xenial
adding python and updating deb url
2 parents 839cabc + 5d87fe9 commit da50fb0

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

Dockerfile

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG BUILD_DATE
55
ARG VERSION
66
ARG OPENVPNAS_VERSION
77
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
8-
LABEL maintainer="sparklyballs"
8+
LABEL maintainer="aptalca"
99

1010
# environment settings
1111
ARG DEBIAN_FRONTEND="noninteractive"
@@ -14,11 +14,20 @@ RUN \
1414
echo "**** install packages ****" && \
1515
apt-get update && \
1616
apt-get install -y \
17+
bridge-utils \
18+
iproute2 \
1719
iptables \
20+
liblzo2-2 \
1821
libmysqlclient-dev \
1922
net-tools \
23+
python \
24+
python-mysqldb \
25+
python-pkg-resources \
26+
python-pyrad \
27+
python-serial \
2028
rsync \
21-
sqlite3 && \
29+
sqlite3 \
30+
ucarp && \
2231
echo "**** download openvpn-as ****" && \
2332
if [ -z ${OPENVPNAS_VERSION+x} ]; then \
2433
OPENVPNAS_VERSION=$(curl -w "%{url_effective}" -ILsS -o /dev/null \
@@ -28,7 +37,7 @@ RUN \
2837
mkdir /openvpn && \
2938
curl -o \
3039
/openvpn/openvpn.deb -L \
31-
"https://swupdate.openvpn.org/as/openvpn-as-${OPENVPNAS_VERSION}-Ubuntu16.amd_64.deb" && \
40+
"https://swupdate.openvpn.org/as/openvpn-as-${OPENVPNAS_VERSION}-Ubuntu16.amd64.deb" && \
3241
curl -o \
3342
/openvpn/openvpn-clients.deb -L \
3443
"https://openvpn.net/downloads/openvpn-as-bundled-clients-latest.deb" && \

0 commit comments

Comments
 (0)