From 1bc3d3e15d6b2727ab09224be0592b70d7600b40 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Wed, 18 Mar 2026 22:45:14 +1100 Subject: [PATCH] fix: Add ascii_art to Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c951778..7a47b54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ # Copy only app source files COPY blueprints blueprints -COPY main.py server.py curl.py tools.py mail.py cache_helper.py ./ +COPY main.py server.py curl.py tools.py mail.py cache_helper.py ascii_art.py ./ COPY templates templates COPY data data COPY pwa pwa @@ -56,7 +56,7 @@ COPY --from=build --chown=appuser:appgroup /app/curl.py /app/ COPY --from=build --chown=appuser:appgroup /app/tools.py /app/ COPY --from=build --chown=appuser:appgroup /app/mail.py /app/ COPY --from=build --chown=appuser:appgroup /app/cache_helper.py /app/ - +COPY --from=build --chown=appuser:appgroup /app/ascii_art.py /app/ USER appuser EXPOSE 5000