Skip to content

Commit 6ce7f7d

Browse files
authored
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.
1 parent bed6f31 commit 6ce7f7d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.dockerignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv

0 commit comments

Comments
 (0)