From 53780e7a2d54995d06216dae393e198d1a3ff8d8 Mon Sep 17 00:00:00 2001 From: Karl Date: Mon, 14 Jul 2025 14:33:01 +0100 Subject: [PATCH] idated dockerfile --- dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dockerfile b/dockerfile index a412489..0f25e19 100644 --- a/dockerfile +++ b/dockerfile @@ -13,6 +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 -r requirements.txt # ---- Final Stage ----