From b424526968bd913e75da148a5889453be8c74d94 Mon Sep 17 00:00:00 2001 From: Alisson Date: Mon, 11 Mar 2024 17:26:47 -0300 Subject: [PATCH] add nltk_data dir to /tmp --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6e3ea55..1050c0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,8 @@ RUN poetry config virtualenvs.create false && \ RUN apt update && apt install libmagic1 -y RUN poetry add python-magic +RUN mkdir /tmp/nltk_data + COPY . . EXPOSE 8000