From efbb154fa5a108d654b9b374cde3e912d01c89ff Mon Sep 17 00:00:00 2001 From: TheOnlyWayUp Date: Wed, 29 Oct 2025 01:57:58 +0530 Subject: [PATCH] docker: Remove apt lists --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d82ee93..5f671be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,9 @@ RUN apt-fast install -y git build-essential python3.13-dev libgobject-2.0 libpan # aiohttp-client-cache depends on multipart, which requires python3.13-dev to build successfully on 3.13 # weasyprint depends on libgoject, libpango, and libpangoft2 +RUN rm -rf /var/lib/apt/lists/* +# https://github.com/TheOnlyWayUp/WattpadDownloader/pull/82#discussion_r2470358950 + WORKDIR /app