Skip to content
Open
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
4 changes: 3 additions & 1 deletion dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ RUN headref=$(awk '{ print $2 }' .git/HEAD) \
# Stage 2: Download Python dependencies
FROM python:3.12-slim AS download-python

COPY --from=ghcr.io/astral-sh/uv:0.12.9@sha256:8b940d3a9d65bed080436972241af2e21c84b5e8c9193f7014ed71479ee795ff /uv /bin/uv
# Install the pinned uv release from PyPI. Building from the GHCR image fails
# in environments where ghcr.io's token service is unavailable.
RUN pip install --no-cache-dir uv==0.12.9

COPY dashboard/server/requirements.txt .
ENV UV_COMPILE_BYTECODE=1 \
Expand Down