build(docker): add integration tests, Dockerfile, and docker-compose for packaging

This commit is contained in:
m3tm3re
2026-02-04 20:20:39 +01:00
parent 867b47efd0
commit 1a01b46ed6
6 changed files with 506 additions and 3 deletions

60
.dockerignore Normal file
View File

@@ -0,0 +1,60 @@
# Git
.git
.gitignore
.gitattributes
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
# Virtual environments
venv/
env/
ENV/
.venv
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.hypothesis/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Documentation
*.md
docs/
# Nix
result/
.direnv/
.sisyphus/
# Docker
docker-compose.yml
.dockerignore
# OS
.DS_Store
Thumbs.db
# CI/CD
.github/
.gitlab-ci.yml
Jenkinsfile
# Logs
*.log