Files
hinpdof/.dockerignore
Hadley Rich f184aa1680
All checks were successful
Build and Publish Docker Image / build (push) Successful in 43s
Dont ignore poetry lock from docker
2024-11-11 10:30:42 +13:00

59 lines
737 B
Plaintext

# Ignore Python bytecode files
__pycache__/
*.py[cod]
# Ignore distribution / packaging files
build/
dist/
*.egg-info/
.eggs/
wheels/
# Ignore virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Ignore test and coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints
# Ignore IPython profile directories
profile_default/
ipython_config.py
# Ignore pyenv files
.python-version
# Ignore VS Code settings
.vscode/
# Ignore Dockerfile and Dockerignore itself
Dockerfile
.dockerignore
# Ignore Git files
.git/
.gitignore
# Ignore logs and temporary files
*.log
*.tmp