File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ RUN apt update && \
3636 flex \
3737 bison
3838
39- RUN pip3 install uv
4039
4140FROM build-deps AS build-unbound
4241ARG PYTHON_VERSION
@@ -71,9 +70,7 @@ COPY requirements.txt /src/
7170
7271WORKDIR /src
7372
74- ENV UV_LINK_MODE=copy
75- RUN --mount=type=cache,target=/root/.cache/uv \
76- uv pip install --system -r requirements.txt
73+ RUN pip3 install --system -r requirements.txt
7774# sslyze is installed from our own fork, and installed
7875# without deps to avoid it trying to install nassl, when
7976# we have our custom nassl
@@ -85,9 +82,7 @@ ARG PYTHON_VERSION
8582
8683COPY requirements-dev.txt /src/
8784
88- ENV UV_LINK_MODE=copy
89- RUN --mount=type=cache,target=/root/.cache/uv \
90- uv pip install --system -r requirements-dev.txt
85+ RUN pip3 install --system -r requirements-dev.txt
9186
9287# build unbound target
9388FROM --platform=linux/amd64 debian:bullseye-20241111-slim AS unbound
You can’t perform that action at this time.
0 commit comments