diff options
author | 2025-07-15 23:18:06 +0100 | |
---|---|---|
committer | 2025-07-15 23:18:06 +0100 | |
commit | 2f481c93814d635e23737f1fa625186ca02486fa (patch) | |
tree | d9fa8dfd911fc1e613216cd0af2976fbc10f2c09 | |
parent | Update CI tasks to use uv (diff) |
Replace virtualenv with venv
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,8 +8,8 @@ ENV UV_COMPILE_BYTECODE=1 \ # Install project dependencies with build tools available WORKDIR /build -RUN pip install --no-cache-dir --upgrade pip setuptools wheel virtualenv \ - && python -m virtualenv .venv +RUN pip install --no-cache-dir --upgrade pip setuptools wheel \ + && python -m venv .venv RUN --mount=type=cache,target=/root/.cache/uv \ --mount=type=bind,source=uv.lock,target=uv.lock \ |