Merge pull request #3 from linuxserver/p7zip

replace unrar with p7zip
This commit is contained in:
aptalca 2022-01-25 08:40:11 -05:00 committed by GitHub
commit c7f1813a47

View file

@ -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]"; \