From 530461a5f032858c63d55db305aabd070530895a Mon Sep 17 00:00:00 2001 From: Karl Date: Mon, 14 Jul 2025 14:44:56 +0100 Subject: [PATCH] add stemm --- dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfile b/dockerfile index d1d9d47..9234edb 100644 --- a/dockerfile +++ b/dockerfile @@ -14,6 +14,7 @@ ENV PATH="/opt/venv/bin:$PATH" 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 --no-build-isolation -r requirements.txt # ---- Final Stage ----