From ba2d84ef5a0219fd1c805399a518cb5441e427ee Mon Sep 17 00:00:00 2001 From: iainbrad Date: Tue, 7 Oct 2025 14:23:38 +0100 Subject: [PATCH] Correct python file name --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 180c2b4..255aff6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the download script -COPY download_cbz.py . +COPY cbz_downloader.py . # Create downloads directory RUN mkdir -p /app/downloads @@ -25,4 +25,4 @@ ENV PASSWORD="" ENV OUTPUT_DIR="/app/downloads" # Run the script -CMD python download_cbz.py +CMD python cbz_downloader.py