Add a Dockerignore file (#72)

* Add required library libatomic1 to Dockerfile

* Add a dockerignore file

It used to take like 3 seconds to copy all the files into the Docker image because `.venv` was included.

That isn't needed because we `uv sync` within the container, so builds are slightly faster during development now.
This commit is contained in:
MMK21 2025-10-25 09:33:57 +01:00 committed by GitHub
parent bed6f313ca
commit 6ce7f7dd3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
.dockerignore Normal file
View file

@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv