Skip to content

Commit

Permalink
Add .dockerignore file for Docker build
Browse files Browse the repository at this point in the history
This significantly reduces the build context from:

```
Sending build context to Docker daemon    916MB
```

to:

```
Sending build context to Docker daemon  3.713MB
```
  • Loading branch information
mirceaulinic committed Apr 4, 2024
1 parent aaff777 commit 719b72c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 719b72c

Please sign in to comment.