Added .dockerignore: for better structure

This commit is contained in:
2025-10-05 00:25:13 +02:00
parent 7a5feac392
commit 483caf938a

42
.dockerignore Normal file
View File

@@ -0,0 +1,42 @@
# Version control
.git
.gitignore
.gitattributes
# Python
__pycache__
*.pyc
*.pyo
*.pyd
.Python
venv/
.env
.venv
pip-log.txt
# Development
.idea/
.vscode/
*.swp
*.swo
*~
# Project specific
data/*.db
logs/*
tests/
docs/
*.md
!README.md
# Docker
Dockerfile
docker-compose.yml
.docker
# Temporary files
*.log
*.sqlite
*.db
temp/
tmp/