Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/*

COPY pyproject.toml uv.lock ./
RUN uv sync --active --frozen \
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --active --frozen \
--no-dev \
--extra cpu \
--extra delft
Expand All @@ -59,7 +60,8 @@ RUN uv sync --active --frozen \
# builder-cv
FROM builder AS builder-cv

RUN uv sync --active --frozen \
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --active --frozen \
--no-dev \
--extra cpu \
--extra delft \
Expand All @@ -82,7 +84,8 @@ RUN apt-get update \
curl \
&& rm -rf /var/lib/apt/lists/*

RUN uv sync --active --frozen \
RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --active --frozen \
--dev \
--extra cpu \
--extra delft \
Expand Down
Loading