From 93ab8dcb9563ac3823e0d7569a7e9989058ecc86 Mon Sep 17 00:00:00 2001 From: Garret Hicks Date: Sun, 22 Oct 2017 09:31:30 -0700 Subject: [PATCH] apply changes from Dockerfile to Dockerfile.armhf --- Dockerfile.armhf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index fb02e04e5..9df34a259 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -11,9 +11,9 @@ VOLUME /config # Update packages and install software RUN apt-get update \ && apt-get install -y transmission-cli transmission-common transmission-daemon \ - && wget -O - https://github.com/Secretmapper/combustion/archive/release.zip \ - && unzip release.zip ; rm *.zip \ - && mkdir /usr/bin/transmission-daemon/combustion ; mv combustion-release/* /usr/bin/transmission-daemon/combustion \ + && wget -O /tmp/release.zip https://github.com/Secretmapper/combustion/archive/release.zip \ + && unzip -d /tmp /tmp/release.zip ; rm /tmp/*.zip \ + && mkdir /usr/bin/transmission-combustion/ ; mv /tmp/combustion-release/* /usr/bin/transmission-combustion/ \ && apt-get install -y openvpn curl ufw \ && curl -sLO https://archive.raspbian.org/raspbian/pool/main/d/dumb-init/dumb-init_1.0.3-1_armhf.deb \ && dpkg -i dumb-init_*.deb \