From 6e11a9cf3856ad62415b626204f74f83a3a48b81 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 12 Jun 2025 11:52:38 -0400 Subject: [PATCH] Minor changes removed cache clearing to avoid docker compose issues when building. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ed83b46..63d6c8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,6 @@ ENV DEBIAN_FRONTEND=noninteractive # Install lighttpd and clean up apt cache RUN apt update && \ apt install -y --no-install-recommends lighttpd && \ - apt clean && \ - rm -rf /var/lib/apt/lists/* # Expose the default lighttpd port EXPOSE 80