From 768c3c3c7afb594a5d03a2311a29a1c7ecf9731a Mon Sep 17 00:00:00 2001 From: Karl Date: Mon, 14 Jul 2025 14:38:05 +0100 Subject: [PATCH] copy to last working dockerifle --- dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 0f25e19..044046e 100644 --- a/dockerfile +++ b/dockerfile @@ -13,8 +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==2.32.3 -RUN pip install --no-cache-dir stem==1.8.2 +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 # ---- Final Stage ----