From b6cef1fb203ef179be89e289a46f5ceb644c0901 Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 24 Jan 2022 14:46:02 -0500 Subject: [PATCH] replace unrar with p7zip --- Dockerfile | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 31b53b7..0bd8973 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,21 +24,11 @@ RUN \ apk add --no-cache \ curl \ libjpeg-turbo \ + p7zip \ py3-pip \ python3 \ sqlite \ tesseract-ocr && \ - echo "**** install unrar ****" && \ - mkdir /tmp/unrar && \ - curl -o /tmp/unrar.tar.gz \ - -L "https://www.rarlab.com/rar/unrarsrc-6.1.4.tar.gz" && \ - tar xf /tmp/unrar.tar.gz -C \ - /tmp/unrar --strip-components=1 && \ - cd /tmp/unrar && \ - make && \ - make install && \ - mkdir -p /usr/share/licenses/unrar && \ - mv license.txt /usr/share/licenses/unrar/ && \ echo "**** install pyload ****" && \ if [ -z ${PYLOAD_VERSION+x} ]; then \ PYLOAD="pyload-ng[all]"; \