From ff8882fe4c5872805dd7ec4386f217a5695fdcce Mon Sep 17 00:00:00 2001 From: Steve Garon Date: Wed, 15 Apr 2020 19:53:10 -0400 Subject: [PATCH] Added .dockerignore and tweak .gitignore file --- .dockerignore | 22 +++++++++++++ .gitignore | 87 ++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 97 insertions(+), 12 deletions(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..a764cee9 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,22 @@ +Dockerfile +.idea +.git + +pipelines +venv +env +test +tests +exemples +docs + +pip-log.txt +pip-delete-this-directory.txt +.tox +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +*.log diff --git a/.gitignore b/.gitignore index 00b3a0a6..9c07ba8a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,84 @@ -# Add any directories, files, or patterns you don't want to be tracked by version control +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so # IDE files .pydevproject .python-version .idea -# Testing artifacts -.pytest_cache -htmlcov +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# 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/ +.nox/ .coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ -# OS Files -ehthumbs.db -Thumbs.db +# Translations +*.mo +*.pot -# Build artifacts -build/ -dist/ -*.py[cod] -*.egg-info +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Cython debug symbols +cython_debug/ \ No newline at end of file