Fix build errors with the base Dockerfile

This commit is contained in:
Julian Oster
2020-01-14 17:07:43 +01:00
parent ee055ef00e
commit 3259e0fefa

5
Dockerfile Executable file → Normal file
View File

@@ -7,13 +7,14 @@ ARG DOCKERIZE_ARCH=amd64
ARG DOCKERIZE_VERSION=v0.6.1 ARG DOCKERIZE_VERSION=v0.6.1
ARG DUMBINIT_VERSION=1.2.2 ARG DUMBINIT_VERSION=1.2.2
# Required for omitting the tzdata configuration dialog
ENV DEBIAN_FRONTEND=noninteractive
# Update, upgrade and install core software # Update, upgrade and install core software
RUN apt update \ RUN apt update \
&& apt -y upgrade \ && apt -y upgrade \
&& apt -y install software-properties-common wget git curl jq \ && apt -y install software-properties-common wget git curl jq \
&& add-apt-repository ppa:transmissionbt/ppa \ && add-apt-repository ppa:transmissionbt/ppa \
&& wget -O - https://swupdate.openvpn.net/repos/repo-public.gpg | apt-key add - \
&& echo "deb http://build.openvpn.net/debian/openvpn/stable xenial main" > /etc/apt/sources.list.d/openvpn-aptrepo.list \
&& apt update \ && apt update \
&& apt install -y sudo transmission-cli transmission-common transmission-daemon curl rar unrar zip unzip ufw iputils-ping openvpn bc tzdata \ && apt install -y sudo transmission-cli transmission-common transmission-daemon curl rar unrar zip unzip ufw iputils-ping openvpn bc tzdata \
python2.7 python2.7-pysqlite2 && ln -sf /usr/bin/python2.7 /usr/bin/python2 \ python2.7 python2.7-pysqlite2 && ln -sf /usr/bin/python2.7 /usr/bin/python2 \