From 64ce745f8ea38c73205d7555cef062c39f43b7c8 Mon Sep 17 00:00:00 2001 From: Nacim Date: Mon, 23 Jun 2025 13:10:27 +0200 Subject: [PATCH] Update Dockerfile.analyzer --- Dockerfile.analyzer | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.analyzer b/Dockerfile.analyzer index 0c26454..812d181 100644 --- a/Dockerfile.analyzer +++ b/Dockerfile.analyzer @@ -9,5 +9,7 @@ RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* RUN pip install --no-cache-dir \ https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.7.0/fr_core_news_sm-3.7.0-py3-none-any.whl +COPY requirements.txt /tmp/ +RUN pip install --no-cache-dir -r /tmp/requirements.txt COPY default.yaml /usr/bin/presidio-analyzer/presidio_analyzer/conf/default.yaml