From 6423a4990881a9eafa1c50f6026e6451b9591e01 Mon Sep 17 00:00:00 2001 From: GREENRAT-K405 Date: Sun, 15 Feb 2026 03:53:39 +0530 Subject: [PATCH] add .dockerignore to concore --- .dockerignore | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..21476c3 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,67 @@ +# Git +.git +.gitignore + +# Python +__pycache__/ +*.py[cod] +*$py.class +.Python +env/ +venv/ +ENV/ +.venv/ +Pipfile.lock + +# Python Build / Distribution +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# C/C++ Build Artifacts +target/ +*.o +*.out +*.so +*.dylib +*.dll +CMakeCache.txt +CMakeFiles/ + +# Testing and Coverage +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# IDE and OS files +.vscode/ +.idea/ +*.swp +*.swo +.DS_Store +Thumbs.db + +Dockerfile* +docker-compose.yml +.dockerignore \ No newline at end of file