Minor changes

removed cache clearing to avoid docker compose issues when building.
This commit is contained in:
Nicolas 2025-06-12 11:52:38 -04:00
parent 23849fc99c
commit 6e11a9cf38

View File

@ -7,8 +7,6 @@ ENV DEBIAN_FRONTEND=noninteractive
# Install lighttpd and clean up apt cache # Install lighttpd and clean up apt cache
RUN apt update && \ RUN apt update && \
apt install -y --no-install-recommends lighttpd && \ apt install -y --no-install-recommends lighttpd && \
apt clean && \
rm -rf /var/lib/apt/lists/*
# Expose the default lighttpd port # Expose the default lighttpd port
EXPOSE 80 EXPOSE 80