File size: 182 Bytes
91a1198
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN python -m spacy download en_core_web_sm
COPY . .
CMD ["python", "app.py"]