diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..650f159 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,45 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg-info/ +.eggs/ +*.egg + +# Virtual Environment +venv/ +env/ +venv.bak/ +.env + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db + +# Docker +.dockerignore +.docker/ + +# Test +tests/ +test_*.py +*_test.py +.pytest_cache/ + +# Build +dist/ +build/ +*.egg-info/ + +# Cache +.cache/ +__pycache__/