diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..00ef906 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,33 @@ +# Git / repo metadata +.git +.gitignore +.gitlab-ci.yml + +# Local Python artifacts +__pycache__/ +*.py[cod] +*.pyo +*.pyd +.pytest_cache/ +.coverage +htmlcov/ + +# Local virtual environments +.venv/ +venv/ +env/ + +# Local databases +database_file/*.db + +# Dev/test files not needed at runtime +tests/ +compose.yml +manifests/ + +# Local/editor/system files +.env +*.log +.DS_Store +.idea/ +.vscode/