diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000..d983df5d9d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,56 @@ +# -*- mode: gitignore; -*- +.github/ +docs/ +examples/ +logos/ + +Dockerfile + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# egg-related +vyper.egg-info/ +build/ +dist/ +.eggs/ + +.pytest_cache/ + +# pyenv +.python-version + +# dotenv +.env + +# virtualenv +.venv/ +venv/ +ENV/ + +# Coverage tests +.coverage* +.cache/ +htmlcov/ +coverage.xml + +# sphinx +docs/_build/ +docs/modules.rst +docs/vyper.rst +docs/vyper.*.rst + +# IDEs +.idea/ +.vscode/ + +.tox/ +.mypy_cache/ +.hypothesis/ + +*.spec + +# mac +.DS_Store