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 <qwen-coder@alibabacloud.com>
This commit is contained in:
Jacquin Antoine
2026-02-28 23:18:06 +01:00
parent 0ca7f53d01
commit f33d7ac7cd

19
.dockerignore Normal file
View File

@ -0,0 +1,19 @@
# Build outputs
dist/
# Dependency directories
vendor/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Aider cache
.aider*