Changes to be committed:
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m35s

modified:   Dockerfile
This commit is contained in:
2024-12-27 19:33:28 +01:00
parent c7a37b2cfc
commit 32c21763aa

View File

@@ -102,6 +102,7 @@ RUN echo "**** apply calibre-web patches ****" 1>&2 \
RUN echo "**** build & install calibre-web ****" 1>&2 \ RUN echo "**** build & install calibre-web ****" 1>&2 \
&& . /app/bin/activate \ && . /app/bin/activate \
&& cd /app/calibreweb \ && cd /app/calibreweb \
&& pip3 install --no-cache simpleldap \
&& pip3 install --no-cache \ && pip3 install --no-cache \
-r requirements.txt \ -r requirements.txt \
-r optional-requirements.txt -r optional-requirements.txt
@@ -151,7 +152,7 @@ RUN \
&& apt install -y libnss3 \ && apt install -y libnss3 \
&& apt install -y imagemagick \ && apt install -y imagemagick \
&& apt install -y bash \ && apt install -y bash \
&& apt install -y sudo \ && apt install -y procps \
&& apt install -y python3 && apt install -y python3
@@ -170,12 +171,10 @@ RUN rm -rf /var/lib/apt/lists/* \
RUN yes | /app/bin/pip3 uninstall google-api-python-client RUN yes | /app/bin/pip3 uninstall google-api-python-client
RUN yes | /app/bin/pip3 uninstall gevent RUN yes | /app/bin/pip3 uninstall gevent
RUN yes | /app/bin/pip3 uninstall greenlet RUN yes | /app/bin/pip3 uninstall greenlet
RUN yes | /app/bin/pip3 uninstall httplib2 RUN yes | /app/bin/pip3 uninstall httplib2
RUN yes | /app/bin/pip3 uninstall oauth2client RUN yes | /app/bin/pip3 uninstall oauth2client
RUN yes | /app/bin/pip3 uninstall uritemplate RUN yes | /app/bin/pip3 uninstall uritemplate
RUN yes | /app/bin/pip3 uninstall pyasn1-modules
RUN yes | /app/bin/pip3 uninstall pyasn1
RUN yes | /app/bin/pip3 uninstall PyDrive2 RUN yes | /app/bin/pip3 uninstall PyDrive2
RUN yes | /app/bin/pip3 uninstall PyYAML RUN yes | /app/bin/pip3 uninstall PyYAML
RUN yes | /app/bin/pip3 uninstall rsa RUN yes | /app/bin/pip3 uninstall rsa