From 2ddb04ca3b66f82c221ab2a2c8cc296bc7dec324 Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Mon, 5 May 2025 11:34:40 +0200 Subject: [PATCH] remove mounts for now --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ff464c068..b66fcb2bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,8 @@ WORKDIR /usr/local/searxng/ COPY ./requirements.txt ./requirements.txt -RUN --mount=type=cache,id=pip,target=$HOME/.cache/pip python -m venv ./venv \ +# Readd on #4707 "--mount=type=cache,id=pip,target=/root/.cache/pip" +RUN python -m venv ./venv \ && . ./venv/bin/activate \ && pip install -r requirements.txt \ && pip install "uwsgi~=2.0"