From d59e7957a091c851a9aa61fa4b4b867cf7df7f5a Mon Sep 17 00:00:00 2001 From: Max P Date: Mon, 23 Feb 2026 17:30:39 -0500 Subject: [PATCH] chore(deploy): add dockerignore to reduce Railway build context --- .dockerignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..a62af1a78 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,18 @@ +# Keep Docker build context lean for faster Railway uploads and builds. +# Main savings: local dependencies, VCS data, build artifacts. +node_modules +.git +dist +coverage +.nx + +# Local/dev metadata not needed in container build context. +.env +.env.* +.DS_Store +*.log + +# Project-specific local work artifacts. +docs +tasks +thoughts