From 51c4416d4d66150c1e5f00b87f625d28f50f3cb2 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 21 Nov 2025 22:55:02 +1100 Subject: [PATCH] fix: Add cahce helper to dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ef09db..c951778 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 ./ +COPY main.py server.py curl.py tools.py mail.py cache_helper.py ./ COPY templates templates COPY data data COPY pwa pwa @@ -55,6 +55,7 @@ COPY --from=build --chown=appuser:appgroup /app/server.py /app/ 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/ USER appuser EXPOSE 5000