Skip to content

Commit

Permalink
Add .dockerignore (globus#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-janidlo authored May 20, 2022
1 parent 7d5b3e6 commit 1a83b31
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Git
.git
.gitignore
.github

# Docker
.docker

# Byte-compiled / optimized / DLL files
**/__pycache__/
**/*.py[cod]

# Mypy
**/.mypy_cache/

# C extensions
**/*.so

# Distribution / packaging
**/.Python
**/env/
**/build/
**/develop-eggs/
**/dist/
**/downloads/
**/eggs/
**/lib/
**/lib64/
**/parts/
**/sdist/
**/var/
**/*.egg-info/
**/.installed.cfg
**/*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
**/*.manifest
**/*.spec

# Installer logs
**/pip-log.txt
**/pip-delete-this-directory.txt

# Unit test / coverage reports
**/htmlcov/
**/.tox/
**/.coverage
**/.cache
**/nosetests.xml
**/coverage.xml

# Translations
**/*.mo
**/*.pot

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Virtual environment
.env/
.venv/
venv/

0 comments on commit 1a83b31

Please sign in to comment.