File size: 336 Bytes
6dc4993
 
 
ba9a4a9
6dc4993
 
 
 
 
 
 
 
 
5ed6629
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10

WORKDIR /app
RUN mkdir ./texteditor-model
COPY . .

RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y build-essential
RUN pip3 install --upgrade pip setuptools
RUN pip3 install -r requirements.txt
RUN python3 -m spacy download en_core_web_sm
RUN python3 download_dependencies.py

CMD ["python", "app.py"]