Skip to content

Commit

Permalink
fix(Dockerfile): Removed trailing '\'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nold360 authored Jan 5, 2024
1 parent 73e3c93 commit b6f537d
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 b6f537d

Please sign in to comment.