copy to last working dockerifle
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 45s

This commit is contained in:
Karl 2025-07-14 14:38:05 +01:00
parent 53780e7a2d
commit 768c3c3c7a

View File

@ -13,8 +13,8 @@ ENV PATH="/opt/venv/bin:$PATH"
# Copy requirements and install dependencies # Copy requirements and install dependencies
WORKDIR /app WORKDIR /app
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir requests==2.32.3 RUN pip install --no-cache-dir requests stem
RUN pip install --no-cache-dir stem==1.8.2 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 -r requirements.txt
# ---- Final Stage ---- # ---- Final Stage ----