From b849ca4922acac336563fc84d020854dce430853 Mon Sep 17 00:00:00 2001 From: mtiessler Date: Thu, 27 Feb 2025 11:21:53 +0100 Subject: [PATCH] fixed dockerfile for ai processing --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d19c10b..d9f0844 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ COPY Pipfile Pipfile.lock /wsgi/ RUN pip install pipenv && pipenv install --deploy --ignore-pipfile +RUN pipenv run pip install torch --index-url https://download.pytorch.org/whl/cpu + RUN pipenv run python -m spacy download en_core_web_sm COPY . /wsgi