From f79cb6e91d94664c0c6298b2ff27753b2f2dec9d Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Wed, 18 Feb 2026 12:06:28 +1100 Subject: [PATCH] fix: Remove more copies from dockerfile --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 01592b5..a89d8f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,12 +19,8 @@ RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --locked # 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 ./ COPY templates templates -COPY data data -COPY pwa pwa -COPY .well-known .well-known # Clean up caches and pycache RUN rm -rf /root/.cache/uv