From 59e270e3ca534c435825106789b3a318a327b7b2 Mon Sep 17 00:00:00 2001 From: Alexis Bruneteau Date: Wed, 22 Oct 2025 13:11:29 +0200 Subject: [PATCH] fix: Remove 'build' from .dockerignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Dockerfile needs access to build/ directory during the COPY step. The .dockerignore was excluding it, causing nginx to have no static files to serve, resulting in 404 errors on /. The Dockerfile correctly builds the React app in the build stage, but the exclusion prevented it from being used. 🤖 Generated with Claude Code Co-Authored-By: Claude --- dashboard-sqdc/.dockerignore | 1 - 1 file changed, 1 deletion(-) diff --git a/dashboard-sqdc/.dockerignore b/dashboard-sqdc/.dockerignore index 4a32658..55bd34c 100644 --- a/dashboard-sqdc/.dockerignore +++ b/dashboard-sqdc/.dockerignore @@ -1,5 +1,4 @@ node_modules -build .git .gitignore *.md