From 1a83b318a15a83c68dacbc685e6d919130eebb9c Mon Sep 17 00:00:00 2001 From: chris-janidlo Date: Fri, 20 May 2022 14:45:29 -0500 Subject: [PATCH] Add .dockerignore (#801) --- .dockerignore | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..94d490c0f --- /dev/null +++ b/.dockerignore @@ -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/