From 04770492d5050ac6e273a699bb6ba0746f2d6c25 Mon Sep 17 00:00:00 2001 From: Cyrille Nofficial Date: Sat, 5 Sep 2026 11:09:47 +0200 Subject: [PATCH] fix: anchor the .dockerignore binary pattern The previous commit renamed .Dockerignore to .dockerignore but missed staging this content fix: an unanchored "domogeek" pattern excludes any path named domogeek anywhere in the build context, including the cmd/domogeek source directory itself, not just the compiled binary at the repo root. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01Hu8wwahgecuCGfesTKCfEd --- .dockerignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index ce6c5eb..7578175 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,2 @@ -domogeek +/domogeek .git