From 3700e1452552b9d2ab9d581c1d2d95016149a4d6 Mon Sep 17 00:00:00 2001 From: Erik Gustafsson Date: Tue, 7 Jul 2020 12:58:06 +0200 Subject: [PATCH] Adding p7zip and p7zip-full for unzipping on ARM archs (#1284) Issue at https://github.com/haugene/docker-transmission-openvpn/issues/1283 . Unrar and similar packages are not included in armhf release, thus this package allows us to handle automatic extraction and similar. --- Dockerfile.armhf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 759b0cb50..de50bbc4d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -10,7 +10,7 @@ VOLUME /config # Update packages and install software RUN apt-get update \ && apt-get -y install apt-utils transmission-cli transmission-common transmission-daemon \ - && apt-get install -y dumb-init unzip openvpn curl ufw git tinyproxy jq bash \ + && apt-get install -y dumb-init unzip p7zip-full p7zip openvpn curl ufw git tinyproxy jq bash \ && apt-get -y upgrade \ && curl -L -o /tmp/release.zip https://github.com/Secretmapper/combustion/archive/release.zip \ && unzip /tmp/release.zip -d /opt/transmission-ui/ \