From f43b8dc8f171bc8fd17964ade1a588620cc8038f Mon Sep 17 00:00:00 2001 From: Luis Cosio Date: Sun, 19 Jul 2026 19:21:38 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=92=20fix:=20exclude=20.env=20from=20D?= =?UTF-8?q?ocker=20context=20and=20git?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dockerfile runs COPY . . and Docker does not read .gitignore. This repo takes config via runtime env vars and has no .env today, but nothing prevented one from being created (e.g. for local compose use), committed, or baked into an image layer. Cheap insurance on both fronts. --- .dockerignore | 2 ++ .gitignore | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.dockerignore b/.dockerignore index 7b32381..d639b04 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,3 +4,5 @@ node_modules npm-debug.log* test-results traces-*.json +.env +.env.* diff --git a/.gitignore b/.gitignore index 5a5c84b..7181283 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ node_modules/ test-results/ traces-*.json +.env +.env.*