From 5dca78789d628d0b3af1f64b740d7307b6bc7ee0 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 16 May 2026 19:31:39 -0400 Subject: [PATCH] fix(docker): exclude uploads/ from build context The uploads/ directory is bind-mounted at runtime via docker-compose and should not be copied into the Docker build context. This was slowing down builds and including potentially large media files in the context. --- .dockerignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index dc78b75..5b7fcc1 100644 --- a/.dockerignore +++ b/.dockerignore @@ -22,4 +22,7 @@ logs/ node_modules/ # Environment -.env \ No newline at end of file +.env + +# Media uploads (bind-mounted at runtime) +uploads/ \ No newline at end of file