File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ 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- RUN UV_PROJECT_ENVIRONMENT=${VENV_PATH} uv venv
40+ RUN uv venv
4141RUN ${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_PROJECT_ENVIRONMENT=${VENV_PATH} uv sync --inexact --frozen --all-extras --no-install-project --compile-bytecode
47+ RUN uv sync --inexact --frozen --all-extras --no-install-project --compile-bytecode
4848
4949# --------------- `final` stage ---------------
5050FROM base AS final
You can’t perform that action at this time.
0 commit comments