revert back if this doesn't work
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 39s

This commit is contained in:
Karl 2025-07-14 14:41:04 +01:00
parent 768c3c3c7a
commit 415326d932

View File

@ -13,9 +13,8 @@ ENV PATH="/opt/venv/bin:$PATH"
# Copy requirements and install dependencies
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir requests stem
RUN pip install --no-cache-dir git+https://github.com/karl0ss/requests_tor.git@ae1e85abb3bb2c25f431bd031c6d881986c626f6
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir requests==2.32.3
RUN pip install --no-cache-dir --no-build-isolation -r requirements.txt
# ---- Final Stage ----
FROM python:3.11-slim-bookworm