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 \