This commit is contained in:
62
.dockerignore
Normal file
62
.dockerignore
Normal file
@@ -0,0 +1,62 @@
|
||||
# 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 Poetry lock file
|
||||
poetry.lock
|
||||
|
||||
# Ignore VS Code settings
|
||||
.vscode/
|
||||
|
||||
# Ignore Dockerfile and Dockerignore itself
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
|
||||
# Ignore Git files
|
||||
.git/
|
||||
.gitignore
|
||||
|
||||
# Ignore logs and temporary files
|
||||
*.log
|
||||
*.tmp
|
||||
Reference in New Issue
Block a user