From 691672d104137271a931e7a547cfbc9180b25630 Mon Sep 17 00:00:00 2001 From: Serge Levin Date: Fri, 12 Apr 2024 15:14:00 +0300 Subject: [PATCH] Added bs4, lxml, cloudscraper packages (#4) These packages are required by most of the stashapp commmunity scrapers --- linux-amd64.Dockerfile | 5 +++-- linux-arm64.Dockerfile | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/linux-amd64.Dockerfile b/linux-amd64.Dockerfile index fa126cc93..dc96aa6cb 100644 --- a/linux-amd64.Dockerfile +++ b/linux-amd64.Dockerfile @@ -6,10 +6,11 @@ EXPOSE 9999 ARG IMAGE_STATS ENV IMAGE_STATS=${IMAGE_STATS} WEBUI_PORTS="9999/tcp,9999/udp" -RUN apk add --no-cache ffmpeg python3 py3-requests sqlite-libs && \ +RUN apk add --no-cache ffmpeg python3 py3-requests sqlite-libs \ + py3-beautifulsoup4 py3-lxml && \ apk add --no-cache --virtual=build-dependencies py3-pip && \ pip3 install --break-system-packages --no-cache-dir --upgrade \ - stashapp-tools && \ + stashapp-tools cloudscraper && \ apk del --purge build-dependencies ARG VERSION diff --git a/linux-arm64.Dockerfile b/linux-arm64.Dockerfile index b1b868bce..19cd1f66d 100644 --- a/linux-arm64.Dockerfile +++ b/linux-arm64.Dockerfile @@ -6,10 +6,11 @@ EXPOSE 9999 ARG IMAGE_STATS ENV IMAGE_STATS=${IMAGE_STATS} WEBUI_PORTS="9999/tcp,9999/udp" -RUN apk add --no-cache ffmpeg python3 py3-requests sqlite-libs && \ +RUN apk add --no-cache ffmpeg python3 py3-requests sqlite-libs \ + py3-beautifulsoup4 py3-lxml && \ apk add --no-cache --virtual=build-dependencies py3-pip && \ pip3 install --break-system-packages --no-cache-dir --upgrade \ - stashapp-tools && \ + stashapp-tools cloudscraper && \ apk del --purge build-dependencies ARG VERSION