From f4c9d4b69a25a65472b9655d818c7378a52353e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Fri, 9 Jan 2026 20:49:55 +0100 Subject: [PATCH] Lock dependencies during sync in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 18dfc41..fb6aca2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV UV_PYTHON_DOWNLOADS=0 WORKDIR /app COPY . /app/ -RUN uv sync +RUN uv sync --locked RUN chmod +x /app/start.sh ENV PATH="/app/.venv/bin:$PATH"