Skip to content

Commit

Permalink
fix(Dockerfile): Removed trailing '\' (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nold360 authored Jan 9, 2024
1 parent 73e3c93 commit 60d91ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 . .

Expand All @@ -36,4 +36,4 @@ COPY --from=compile-image /root/nltk_data /root/nltk_data

ENV PATH="/opt/venv/bin:$PATH"

EXPOSE 8001
EXPOSE 8001

0 comments on commit 60d91ff

Please sign in to comment.