From 6ce7f7dd3e5d3c3ec78ca4b5aa643e9dc5f936f1 Mon Sep 17 00:00:00 2001 From: MMK21 <50421330+MMK21Hub@users.noreply.github.com> Date: Sat, 25 Oct 2025 09:33:57 +0100 Subject: [PATCH] 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. --- .dockerignore | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv