spacy-words-separation2

This commit is contained in:
2024-09-28 12:06:24 +03:00
parent 56a2632980
commit 7030e58f4b
3 changed files with 8 additions and 6 deletions

View File

@@ -6,11 +6,14 @@ WORKDIR /app
COPY requirements.txt .
# Install system dependencies required for building Python packages
RUN apt-get update && apt-get install -y --no-install-recommends gcc libffi-dev libssl-dev
RUN apt-get update && apt-get install -y --no-install-recommends wget gcc libffi-dev libssl-dev
# Install Python dependencies including redis with hiredis support
RUN pip install --no-cache-dir -r requirements.txt
# Download and install the Russian language model
RUN python -m spacy download ru_core_news_md
COPY . .
EXPOSE 8080