From f33d7ac7cd7fa4c97db07695fc5a5afa46619e5f Mon Sep 17 00:00:00 2001 From: Jacquin Antoine Date: Sat, 28 Feb 2026 23:18:06 +0100 Subject: [PATCH] fix: add .dockerignore to ensure proper Docker build context The Docker build was failing because Docker was using .gitignore patterns to filter the build context, which excluded the cmd/ directory. This new .dockerignore file explicitly controls what gets copied into the Docker build context, ensuring all source files are included while excluding build artifacts and cache files. Co-authored-by: Qwen-Coder --- .dockerignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..5d5369f --- /dev/null +++ b/.dockerignore @@ -0,0 +1,19 @@ +# Build outputs +dist/ + +# Dependency directories +vendor/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Aider cache +.aider*