Skip to content

Commit 351ce42

Browse files
Fixed typos in Dockerfile post refactor
1 parent 73eecc1 commit 351ce42

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ RUN \
7474
# This provides the install maximum compatibility with multiple different architectures including: x86_64, armv71 and aarch64
7575
# You can read more about python wheels here: https://realpython.com/python-wheels/
7676
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ -r \
77-
requirements.txt -r && \
77+
requirements.txt -r optional-requirements.txt && \
7878
# STEP 2 - Move contents of /app/calibre-web-automated/root to / and delete the /app/calibre-web-automated/root directory
7979
cp -R /app/calibre-web-automated/root/* / && \
8080
rm -R /app/calibre-web-automated/root/ && \
@@ -102,7 +102,7 @@ RUN \
102102
# STEP 4.1 - Move koplugin.zip to static directory
103103
if [ -f "/app/calibre-web-automated/koreader/plugins/koplugin.zip" ]; then \
104104
mkdir -p /app/calibre-web-automated/cps/static && \
105-
cp /app/calibre-web-automated/koreader/plugins/koplugin.zip /app/calibre-web/cps/static/ && \
105+
cp /app/calibre-web-automated/koreader/plugins/koplugin.zip /app/calibre-web-automated/cps/static/ && \
106106
echo "Moved koplugin.zip to static directory"; \
107107
else \
108108
echo "Warning: koplugin.zip not found, skipping move to static directory"; \

optional-requirements.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)