mirror of
https://github.com/System-End/nephthys.git
synced 2026-04-19 11:30:24 +00:00
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:
parent
bed6f313ca
commit
6ce7f7dd3e
1 changed files with 10 additions and 0 deletions
10
.dockerignore
Normal file
10
.dockerignore
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Python-generated files
|
||||
__pycache__/
|
||||
*.py[oc]
|
||||
build/
|
||||
dist/
|
||||
wheels/
|
||||
*.egg-info
|
||||
|
||||
# Virtual environments
|
||||
.venv
|
||||
Loading…
Add table
Reference in a new issue