From d04ee5c399c7de2bf98a1ed77177bc3124eab5c8 Mon Sep 17 00:00:00 2001 From: Johan van Eck Date: Sun, 7 Mar 2021 09:54:01 +0200 Subject: [PATCH 1/6] Add flood-for-transmission as an alternative UI --- Dockerfile | 32 ++++++++++++++++++++++++-------- Dockerfile.aarch64 | 32 +++++++++++++++++++++++--------- Dockerfile.armhf | 30 ++++++++++++++++++++++-------- README.md | 3 ++- 4 files changed, 71 insertions(+), 26 deletions(-) diff --git a/Dockerfile b/Dockerfile index fef2313..cf87b3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,10 +18,12 @@ RUN \ python3 \ rsync \ tar \ + unrar \ + unzip \ transmission-cli \ transmission-daemon \ - unrar \ - unzip && \ + nodejs \ + npm && \ echo "**** install transmission ****" && \ if [ -z ${TRANSMISSION_VERSION+x} ]; then \ TRANSMISSION_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \ @@ -32,11 +34,11 @@ RUN \ transmission-daemon==${TRANSMISSION_VERSION} && \ echo "**** install third party themes ****" && \ curl -o \ - /tmp/combustion.zip -L \ - "https://github.com/Secretmapper/combustion/archive/release.zip" && \ - unzip \ - /tmp/combustion.zip -d \ - / && \ + /tmp/combustion.tar.gz -L \ + "https://github.com/Secretmapper/combustion/archive/release.tar.gz" && \ + tar xf \ + /tmp/combustion.tar.gz -C \ + / --strip-components=1 && \ mkdir -p /tmp/twctemp && \ TWCVERSION=$(curl -sX GET "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') && \ @@ -54,9 +56,23 @@ RUN \ tar xf \ /tmp/kettu.tar.gz -C \ /kettu --strip-components=1 && \ + mkdir -p /flood-for-transmission && \ + mkdir -p /tmp/flood-for-transmission && \ + curl -o \ + /tmp/flood-for-transmission.tar.gz -L \ + "https://github.com/johman10/flood-for-transmission/archive/master.tar.gz" && \ + tar xf \ + /tmp/flood-for-transmission.tar.gz -C \ + /tmp/flood-for-transmission --strip-components=1 && \ + cd /tmp/flood-for-transmission && \ + npm ci && \ + npm run build && \ + cd / && \ + mv /tmp/flood-for-transmission/public/** /flood-for-transmission && \ echo "**** cleanup ****" && \ rm -rf \ - /tmp/* + /tmp/* && \ + apk del nodejs npm # copy local files diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 40146fc..db43999 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -18,10 +18,12 @@ RUN \ python3 \ rsync \ tar \ + unrar \ + unzip \ transmission-cli \ transmission-daemon \ - unrar \ - unzip && \ + nodejs \ + npm && \ echo "**** install transmission ****" && \ if [ -z ${TRANSMISSION_VERSION+x} ]; then \ TRANSMISSION_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \ @@ -32,11 +34,11 @@ RUN \ transmission-daemon==${TRANSMISSION_VERSION} && \ echo "**** install third party themes ****" && \ curl -o \ - /tmp/combustion.zip -L \ - "https://github.com/Secretmapper/combustion/archive/release.zip" && \ - unzip \ - /tmp/combustion.zip -d \ - / && \ + /tmp/combustion.tar.gz -L \ + "https://github.com/Secretmapper/combustion/archive/release.tar.gz" && \ + tar xf \ + /tmp/combustion.tar.gz -C \ + / --strip-components=1 && \ mkdir -p /tmp/twctemp && \ TWCVERSION=$(curl -sX GET "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') && \ @@ -54,10 +56,23 @@ RUN \ tar xf \ /tmp/kettu.tar.gz -C \ /kettu --strip-components=1 && \ + mkdir -p /flood-for-transmission && \ + mkdir -p /tmp/flood-for-transmission && \ + curl -o \ + /tmp/flood-for-transmission.tar.gz -L \ + "https://github.com/johman10/flood-for-transmission/archive/master.tar.gz" && \ + tar xf \ + /tmp/flood-for-transmission.tar.gz -C \ + /tmp/flood-for-transmission --strip-components=1 && \ + cd /tmp/flood-for-transmission && \ + npm ci && \ + npm run build && \ + cd / && \ + mv /tmp/flood-for-transmission/public/** /flood-for-transmission && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* - + apk del nodejs npm # copy local files COPY root/ / @@ -65,4 +80,3 @@ COPY root/ / # ports and volumes EXPOSE 9091 51413 VOLUME /config /downloads /watch - diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 2460d94..4e38bda 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -18,10 +18,12 @@ RUN \ python3 \ rsync \ tar \ + unrar \ + unzip \ transmission-cli \ transmission-daemon \ - unrar \ - unzip && \ + nodejs \ + npm && \ echo "**** install transmission ****" && \ if [ -z ${TRANSMISSION_VERSION+x} ]; then \ TRANSMISSION_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \ @@ -32,11 +34,11 @@ RUN \ transmission-daemon==${TRANSMISSION_VERSION} && \ echo "**** install third party themes ****" && \ curl -o \ - /tmp/combustion.zip -L \ - "https://github.com/Secretmapper/combustion/archive/release.zip" && \ - unzip \ - /tmp/combustion.zip -d \ - / && \ + /tmp/combustion.tar.gz -L \ + "https://github.com/Secretmapper/combustion/archive/release.tar.gz" && \ + tar xf \ + /tmp/combustion.tar.gz -C \ + / --strip-components=1 && \ mkdir -p /tmp/twctemp && \ TWCVERSION=$(curl -sX GET "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') && \ @@ -54,6 +56,19 @@ RUN \ tar xf \ /tmp/kettu.tar.gz -C \ /kettu --strip-components=1 && \ + mkdir -p /flood-for-transmission && \ + mkdir -p /tmp/flood-for-transmission && \ + curl -o \ + /tmp/flood-for-transmission.tar.gz -L \ + "https://github.com/johman10/flood-for-transmission/archive/master.tar.gz" && \ + tar xf \ + /tmp/flood-for-transmission.tar.gz -C \ + /tmp/flood-for-transmission --strip-components=1 && \ + cd /tmp/flood-for-transmission && \ + npm ci && \ + npm run build && \ + cd / && \ + mv /tmp/flood-for-transmission/public/** /flood-for-transmission && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* @@ -65,4 +80,3 @@ COPY root/ / # ports and volumes EXPOSE 9091 51413 VOLUME /config /downloads /watch - diff --git a/README.md b/README.md index e1112a5..e29c8a0 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | -| `-e TRANSMISSION_WEB_HOME=/combustion-release/` | Specify an alternative UI options are `/combustion-release/`, `/transmission-web-control/`, and `/kettu/` . | +| `-e TRANSMISSION_WEB_HOME=/combustion-release/` | Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu) and [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission). | | `-e USER=username` | Specify an optional username for the interface | | `-e PASS=password` | Specify an optional password for the interface | | `-e WHITELIST=iplist` | Specify an optional list of comma separated host whitelist | @@ -260,6 +260,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **06.03.21:** - Add Flood for Transmission as a UI option * **23.01.21:** - Rebasing to alpine 3.13. * **02.11.20:** - Add ca-certificates package to allow connecting to https trackers. * **02.06.20:** - Rebase to alpine 3.12, update to transmission 3.0, remove python2, add python3. From ca06e70e367d3948ded4ad80acbf675dea4ee754 Mon Sep 17 00:00:00 2001 From: Johan van Eck Date: Sun, 7 Mar 2021 09:58:51 +0200 Subject: [PATCH 2/6] Update README the proper way --- README.md | 3 +-- readme-vars.yml | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e29c8a0..e1112a5 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | -| `-e TRANSMISSION_WEB_HOME=/combustion-release/` | Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu) and [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission). | +| `-e TRANSMISSION_WEB_HOME=/combustion-release/` | Specify an alternative UI options are `/combustion-release/`, `/transmission-web-control/`, and `/kettu/` . | | `-e USER=username` | Specify an optional username for the interface | | `-e PASS=password` | Specify an optional password for the interface | | `-e WHITELIST=iplist` | Specify an optional list of comma separated host whitelist | @@ -260,7 +260,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **06.03.21:** - Add Flood for Transmission as a UI option * **23.01.21:** - Rebasing to alpine 3.13. * **02.11.20:** - Add ca-certificates package to allow connecting to https trackers. * **02.06.20:** - Rebase to alpine 3.12, update to transmission 3.0, remove python2, add python3. diff --git a/readme-vars.yml b/readme-vars.yml index f11c65d..655353f 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -40,7 +40,7 @@ cap_add_param: false # optional container parameters opt_param_usage_include_env: true opt_param_env_vars: - - { env_var: "TRANSMISSION_WEB_HOME", env_value: "/combustion-release/", desc: "Specify an alternative UI options are `/combustion-release/`, `/transmission-web-control/`, and `/kettu/` ." } + - { env_var: "TRANSMISSION_WEB_HOME", env_value: "/combustion-release/", desc: "Specify an alternative UI options are [`/combustion-release/`](https://github.com/Secretmapper/combustion), [`/transmission-web-control/`](https://github.com/ronggang/transmission-web-control), [`/kettu/`](https://github.com/endor/kettu) and [`/flood-for-transmission/`](https://github.com/johman10/flood-for-transmission)." } - { env_var: "USER", env_value: "username", desc: "Specify an optional username for the interface" } - { env_var: "PASS", env_value: "password", desc: "Specify an optional password for the interface" } - { env_var: "WHITELIST", env_value: "iplist", desc: "Specify an optional list of comma separated host whitelist"} @@ -68,7 +68,7 @@ app_setup_block: | The automatic update is a shell script that downloads a blocklist from the url stored in the settings.json, gunzips it, and restarts the transmission daemon. The automatic update will run once a day at 3am local server time. - + ## Using whitelist Use `WHITELIST` to enable an ip of whitelist. Both notation `rpc-whitelist` and `rpc-host-whitelist` are supported. When `WHITELIST` is empty the whitelist is disabled. @@ -76,6 +76,7 @@ app_setup_block: | # changelog changelogs: + - { date: "06.03.21:", desc: "Add Flood for Transmission as a UI option" } - { date: "23.01.21:", desc: "Rebasing to alpine 3.13." } - { date: "02.11.20:", desc: "Add ca-certificates package to allow connecting to https trackers." } - { date: "02.06.20:", desc: "Rebase to alpine 3.12, update to transmission 3.0, remove python2, add python3." } From a3a02dc5d37f74a17e784897eb0db300abdfcb59 Mon Sep 17 00:00:00 2001 From: Johan van Eck Date: Sun, 7 Mar 2021 10:00:59 +0200 Subject: [PATCH 3/6] Sort packages alphabetically again --- Dockerfile | 8 ++++---- Dockerfile.aarch64 | 8 ++++---- Dockerfile.armhf | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf87b3a..39bba05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,17 +13,17 @@ RUN \ curl \ findutils \ jq \ + nodejs \ + npm \ openssl \ p7zip \ python3 \ rsync \ tar \ - unrar \ - unzip \ transmission-cli \ transmission-daemon \ - nodejs \ - npm && \ + unrar \ + unzip && \ echo "**** install transmission ****" && \ if [ -z ${TRANSMISSION_VERSION+x} ]; then \ TRANSMISSION_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index db43999..fb2ed88 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -13,17 +13,17 @@ RUN \ curl \ findutils \ jq \ + nodejs \ + npm \ openssl \ p7zip \ python3 \ rsync \ tar \ - unrar \ - unzip \ transmission-cli \ transmission-daemon \ - nodejs \ - npm && \ + unrar \ + unzip && \ echo "**** install transmission ****" && \ if [ -z ${TRANSMISSION_VERSION+x} ]; then \ TRANSMISSION_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 4e38bda..0156a81 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -13,17 +13,17 @@ RUN \ curl \ findutils \ jq \ + nodejs \ + npm \ openssl \ p7zip \ python3 \ rsync \ tar \ - unrar \ - unzip \ transmission-cli \ transmission-daemon \ - nodejs \ - npm && \ + unrar \ + unzip && \ echo "**** install transmission ****" && \ if [ -z ${TRANSMISSION_VERSION+x} ]; then \ TRANSMISSION_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.13/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \ From 32eb5672d00b45d3a7d206b92b45167aae52fa6c Mon Sep 17 00:00:00 2001 From: Johan van Eck Date: Sun, 7 Mar 2021 10:22:57 +0200 Subject: [PATCH 4/6] Resolve failing build --- Dockerfile.aarch64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index fb2ed88..35e7b17 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -71,7 +71,7 @@ RUN \ mv /tmp/flood-for-transmission/public/** /flood-for-transmission && \ echo "**** cleanup ****" && \ rm -rf \ - /tmp/* + /tmp/* && \ apk del nodejs npm # copy local files From 58ce4bcc78b766758de89e914029329dd405d295 Mon Sep 17 00:00:00 2001 From: Johan van Eck Date: Sun, 7 Mar 2021 12:21:53 +0200 Subject: [PATCH 5/6] Download flood for transmission release instead of building --- Dockerfile | 27 ++++++++------------------- Dockerfile.aarch64 | 21 +++++++-------------- Dockerfile.armhf | 21 +++++++-------------- 3 files changed, 22 insertions(+), 47 deletions(-) diff --git a/Dockerfile b/Dockerfile index 39bba05..60b244e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,6 @@ RUN \ curl \ findutils \ jq \ - nodejs \ - npm \ openssl \ p7zip \ python3 \ @@ -34,11 +32,11 @@ RUN \ transmission-daemon==${TRANSMISSION_VERSION} && \ echo "**** install third party themes ****" && \ curl -o \ - /tmp/combustion.tar.gz -L \ - "https://github.com/Secretmapper/combustion/archive/release.tar.gz" && \ - tar xf \ - /tmp/combustion.tar.gz -C \ - / --strip-components=1 && \ + /tmp/combustion.zip -L \ + "https://github.com/Secretmapper/combustion/archive/release.zip" && \ + unzip \ + /tmp/combustion.zip -d \ + / && \ mkdir -p /tmp/twctemp && \ TWCVERSION=$(curl -sX GET "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') && \ @@ -56,24 +54,15 @@ RUN \ tar xf \ /tmp/kettu.tar.gz -C \ /kettu --strip-components=1 && \ - mkdir -p /flood-for-transmission && \ - mkdir -p /tmp/flood-for-transmission && \ curl -o \ /tmp/flood-for-transmission.tar.gz -L \ - "https://github.com/johman10/flood-for-transmission/archive/master.tar.gz" && \ + "https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" && \ tar xf \ /tmp/flood-for-transmission.tar.gz -C \ - /tmp/flood-for-transmission --strip-components=1 && \ - cd /tmp/flood-for-transmission && \ - npm ci && \ - npm run build && \ - cd / && \ - mv /tmp/flood-for-transmission/public/** /flood-for-transmission && \ + / && \ echo "**** cleanup ****" && \ rm -rf \ - /tmp/* && \ - apk del nodejs npm - + /tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 35e7b17..d3607a9 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -34,11 +34,11 @@ RUN \ transmission-daemon==${TRANSMISSION_VERSION} && \ echo "**** install third party themes ****" && \ curl -o \ - /tmp/combustion.tar.gz -L \ - "https://github.com/Secretmapper/combustion/archive/release.tar.gz" && \ - tar xf \ - /tmp/combustion.tar.gz -C \ - / --strip-components=1 && \ + /tmp/combustion.zip -L \ + "https://github.com/Secretmapper/combustion/archive/release.zip" && \ + unzip \ + /tmp/combustion.zip -d \ + / && \ mkdir -p /tmp/twctemp && \ TWCVERSION=$(curl -sX GET "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') && \ @@ -56,19 +56,12 @@ RUN \ tar xf \ /tmp/kettu.tar.gz -C \ /kettu --strip-components=1 && \ - mkdir -p /flood-for-transmission && \ - mkdir -p /tmp/flood-for-transmission && \ curl -o \ /tmp/flood-for-transmission.tar.gz -L \ - "https://github.com/johman10/flood-for-transmission/archive/master.tar.gz" && \ + "https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" && \ tar xf \ /tmp/flood-for-transmission.tar.gz -C \ - /tmp/flood-for-transmission --strip-components=1 && \ - cd /tmp/flood-for-transmission && \ - npm ci && \ - npm run build && \ - cd / && \ - mv /tmp/flood-for-transmission/public/** /flood-for-transmission && \ + / && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 0156a81..caff859 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -34,11 +34,11 @@ RUN \ transmission-daemon==${TRANSMISSION_VERSION} && \ echo "**** install third party themes ****" && \ curl -o \ - /tmp/combustion.tar.gz -L \ - "https://github.com/Secretmapper/combustion/archive/release.tar.gz" && \ - tar xf \ - /tmp/combustion.tar.gz -C \ - / --strip-components=1 && \ + /tmp/combustion.zip -L \ + "https://github.com/Secretmapper/combustion/archive/release.zip" && \ + unzip \ + /tmp/combustion.zip -d \ + / && \ mkdir -p /tmp/twctemp && \ TWCVERSION=$(curl -sX GET "https://api.github.com/repos/ronggang/transmission-web-control/releases/latest" \ | awk '/tag_name/{print $4;exit}' FS='[""]') && \ @@ -56,19 +56,12 @@ RUN \ tar xf \ /tmp/kettu.tar.gz -C \ /kettu --strip-components=1 && \ - mkdir -p /flood-for-transmission && \ - mkdir -p /tmp/flood-for-transmission && \ curl -o \ /tmp/flood-for-transmission.tar.gz -L \ - "https://github.com/johman10/flood-for-transmission/archive/master.tar.gz" && \ + "https://github.com/johman10/flood-for-transmission/releases/download/latest/flood-for-transmission.tar.gz" && \ tar xf \ /tmp/flood-for-transmission.tar.gz -C \ - /tmp/flood-for-transmission --strip-components=1 && \ - cd /tmp/flood-for-transmission && \ - npm ci && \ - npm run build && \ - cd / && \ - mv /tmp/flood-for-transmission/public/** /flood-for-transmission && \ + / && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* From df9b8bc69a078a077cb5a9f9cb35ca088036f5a9 Mon Sep 17 00:00:00 2001 From: Johan van Eck Date: Sun, 7 Mar 2021 12:24:26 +0200 Subject: [PATCH 6/6] Don't install node and npm anymore --- Dockerfile | 1 + Dockerfile.aarch64 | 6 ++---- Dockerfile.armhf | 2 -- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 60b244e..a4ebff5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,6 +64,7 @@ RUN \ rm -rf \ /tmp/* + # copy local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index d3607a9..e899202 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -13,8 +13,6 @@ RUN \ curl \ findutils \ jq \ - nodejs \ - npm \ openssl \ p7zip \ python3 \ @@ -64,8 +62,8 @@ RUN \ / && \ echo "**** cleanup ****" && \ rm -rf \ - /tmp/* && \ - apk del nodejs npm + /tmp/* + # copy local files COPY root/ / diff --git a/Dockerfile.armhf b/Dockerfile.armhf index caff859..717cd9a 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -13,8 +13,6 @@ RUN \ curl \ findutils \ jq \ - nodejs \ - npm \ openssl \ p7zip \ python3 \