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