From f8c353b97ed5d75c15c0e3e7d86fb6f5a5a9d674 Mon Sep 17 00:00:00 2001 From: Sina Atalay <79940989+sinaatalay@users.noreply.github.com> Date: Wed, 10 Dec 2025 18:34:57 +0300 Subject: [PATCH] Update Dockerfile and justfile --- Dockerfile | 4 ++-- justfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c46c97b7..d7de38a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,13 +15,13 @@ ENV UV_LINK_MODE=copy RUN --mount=type=cache,target=/root/.cache/uv \ --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \ - uv sync --locked --no-install-project --no-editable --extra full + uv sync --frozen --no-install-project --no-editable --extra full --no-default-groups # Then, add the rest of the project source code and install it # Installing separately from its dependencies allows optimal layer caching COPY . /app RUN --mount=type=cache,target=/root/.cache/uv \ - uv sync --locked --no-editable --extra full + uv sync --frozen --no-editable --extra full --no-default-groups # Final stage FROM python:3.12-slim-bookworm diff --git a/justfile b/justfile index 8d881711..2c1c7866 100644 --- a/justfile +++ b/justfile @@ -48,7 +48,7 @@ update-entry-figures: uv run --frozen --all-extras --group update-entry-figures scripts/update_entry_figures.py create-executable: - uv run --frozen --all-extras --group create-executable scripts/create_executable.py + uv run --frozen --all-extras --no-default-groups --group create-executable scripts/create_executable.py # Utilities: count-lines: