File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,17 @@ ENV PATH="/root/.local/bin/:$PATH"
3737# Create a fake VERSION file, so that we don't break the cache because of a mismatch in that file
3838RUN echo "v0.0.0" > VERSION
3939
40+ # Create venv
4041RUN uv venv
41- RUN ${BIN_PATH}/python -m ensurepip
4242
4343# Copy dependency files
4444COPY uv.lock pyproject.toml ./
4545
4646# Install dependencies using uv (only dependencies, not the project itself)
47- RUN uv sync --inexact --frozen --all-extras --no-install-project --compile-bytecode
47+ RUN uv sync --frozen --all-extras --no-install-project --compile-bytecode
48+
49+ # Make sure that pip is available
50+ RUN ${BIN_PATH}/python -m ensurepip
4851
4952# --------------- `final` stage ---------------
5053FROM base AS final
You can’t perform that action at this time.
0 commit comments