From 3259e0fefa8510039e7e2fbeed85beb26bef5919 Mon Sep 17 00:00:00 2001 From: Julian Oster Date: Tue, 14 Jan 2020 17:07:43 +0100 Subject: [PATCH] Fix build errors with the base Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) mode change 100755 => 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile old mode 100755 new mode 100644 index d813f30f4..99a8261ad --- a/Dockerfile +++ b/Dockerfile @@ -7,13 +7,14 @@ ARG DOCKERIZE_ARCH=amd64 ARG DOCKERIZE_VERSION=v0.6.1 ARG DUMBINIT_VERSION=1.2.2 +# Required for omitting the tzdata configuration dialog +ENV DEBIAN_FRONTEND=noninteractive + # Update, upgrade and install core software RUN apt update \ && apt -y upgrade \ && apt -y install software-properties-common wget git curl jq \ && 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 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 \