From 4dd4fb9b00db6a5046d2fe927ee889eeba975902 Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Wed, 18 Jun 2025 23:14:52 +0200 Subject: [PATCH] fix: allow .env.example in Docker build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Docker build was failing because .dockerignore had ".env.*" which excluded .env.example that the Dockerfile needs to copy. Added exception rule "\!.env.example" to explicitly allow this file while still excluding other .env.* files. This fixes the GitHub Actions Docker build failure. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .dockerignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index 4f3f4b9..dd96f9b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,7 +5,9 @@ npm-debug.log .gitignore .env .env.local +# Exclude all .env.* files except .env.example .env.* +!.env.example # Keep nodes.db but exclude other database files data/*.db data/*.db-*