Files
AnonBot/.dockerignore

31 lines
415 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# .dockerignore
.*
!.gitignore
__pycache__
*.pyc
*.pyo
*.pyd
*.log
logs/
# Исключаем виртуальное окружение - оно НЕ нужно в образе!
venv/
.venv/
# Исключаем файлы БД (создаются при запуске)
database/*.db
database/*.db-*
# Служебные файлы
Dockerfile
docker-compose*
README.md
.env
tests/
test/
docs/
.idea/
.vscode/