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.
This commit is contained in:
2026-05-16 19:31:39 -04:00
parent 37e092c2a8
commit 5dca78789d
+4 -1
View File
@@ -22,4 +22,7 @@ logs/
node_modules/
# Environment
.env
.env
# Media uploads (bind-mounted at runtime)
uploads/