Skip to content

Commit

Permalink
Added bs4, lxml, cloudscraper packages (#4)
Browse files Browse the repository at this point in the history
These packages are required by most of the stashapp commmunity scrapers
  • Loading branch information
sergelevin authored Apr 12, 2024
1 parent 644871f commit 691672d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions linux-amd64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions linux-arm64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 691672d

Please sign in to comment.