From b6f537dde50ab4a381d0746ef87f0743882669de Mon Sep 17 00:00:00 2001 From: Nold Date: Fri, 5 Jan 2024 14:12:21 +0100 Subject: [PATCH] fix(Dockerfile): Removed trailing '\' --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e434607e0..0e9a2fa69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN pip install --upgrade pip && \ pip install --no-cache-dir -r requirements.txt RUN python3.10 -c "import nltk; nltk.download('punkt')" && \ - python3.10 -c "import nltk; nltk.download('averaged_perceptron_tagger')" \ + python3.10 -c "import nltk; nltk.download('averaged_perceptron_tagger')" COPY . . @@ -36,4 +36,4 @@ COPY --from=compile-image /root/nltk_data /root/nltk_data ENV PATH="/opt/venv/bin:$PATH" -EXPOSE 8001 \ No newline at end of file +EXPOSE 8001