remove mounts for now

This commit is contained in:
Ivan Gabaldon 2025-05-05 11:34:40 +02:00
parent a12866ad34
commit 2ddb04ca3b
No known key found for this signature in database
GPG Key ID: 075587C93FA67582

View File

@ -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"