diff --git a/Dockerfile b/Dockerfile index b46e5fe76..fe6c5c007 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ VOLUME /config # Update packages and install software RUN apt-get update \ && apt-get -y upgrade \ - && apt-get -y install software-properties-common wget git \ + && apt-get -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 \ @@ -32,10 +32,6 @@ RUN apt-get update \ && useradd -u 911 -U -d /config -s /bin/false abc \ && usermod -G users abc -RUN apt-get update \ - && apt-get install -y curl \ - && apt-get install -y jq - ADD openvpn/ /etc/openvpn/ ADD transmission/ /etc/transmission/ ADD tinyproxy /opt/tinyproxy/ diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 6db80ad01..5587906f3 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -6,7 +6,7 @@ VOLUME /config ENV DOCKERIZE_VERSION=v0.6.0 RUN echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ - && apk --no-cache add bash dumb-init ip6tables ufw@testing openvpn shadow transmission-daemon \ + && apk --no-cache add bash dumb-init ip6tables ufw@testing openvpn shadow transmission-daemon curl jq \ && echo "Install dockerize $DOCKERIZE_VERSION" \ && wget -qO- https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz | tar xz -C /usr/bin \ && mkdir -p /opt/transmission-ui \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a3b731e08..01724b7f8 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -7,7 +7,7 @@ VOLUME /config # Update packages and install software RUN apt-get update \ && apt-get -y install transmission-cli transmission-common transmission-daemon \ - && apt-get install -y dumb-init unzip openvpn curl ufw git tinyproxy \ + && apt-get install -y dumb-init unzip openvpn curl ufw git tinyproxy jq \ && curl -L -o /tmp/release.zip https://github.com/Secretmapper/combustion/archive/release.zip \ && unzip /tmp/release.zip -d /opt/transmission-ui/ \ && rm /tmp/release.zip \