From 719b72c2ca7123c3b03dcb8f71cc954ad66bf45f Mon Sep 17 00:00:00 2001 From: Mircea Ulinic Date: Thu, 4 Apr 2024 10:49:06 +0200 Subject: [PATCH] Add .dockerignore file for Docker build This significantly reduces the build context from: ``` Sending build context to Docker daemon 916MB ``` to: ``` Sending build context to Docker daemon 3.713MB ``` --- .dockerignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..0675dd786 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,19 @@ +.git* +__pycache__ +*.pyc +*.pyo +*.pyd +.Python +.tox +.venv +.coverage +.coverage.* +.cache +.mypy_cache +.pytest_cache +docs +test +static +vagrant +LICENSE +report.json