Skip to content

Commit 29c3d85

Browse files
committed
Revert back to pip for sslyze branch
1 parent 0906a09 commit 29c3d85

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

docker/Dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ RUN apt update && \
3636
flex \
3737
bison
3838

39-
RUN pip3 install uv
4039

4140
FROM build-deps AS build-unbound
4241
ARG PYTHON_VERSION
@@ -71,9 +70,7 @@ COPY requirements.txt /src/
7170

7271
WORKDIR /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

8683
COPY 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
9388
FROM --platform=linux/amd64 debian:bullseye-20241111-slim AS unbound

0 commit comments

Comments
 (0)