aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2025-07-15 23:17:41 +0100
committerGravatar Joe Banks <[email protected]>2025-07-15 23:17:41 +0100
commitd3914f0c67a8427801321847a34dcbd00dc8df94 (patch)
tree836f3cf7d54a47ab03828de2275dfc9fb7efc66b
parentRemove pip-licenses (diff)
Replace virtualenv with venv
Co-authored-by: Johannes Christ <[email protected]>
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 0b1672763..5adefb778 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 \