ZeeAI1 commited on
Commit
91a1198
Β·
verified Β·
1 Parent(s): 7623dea

Create dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +7 -0
dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+ WORKDIR /app
3
+ COPY requirements.txt .
4
+ RUN pip install --no-cache-dir -r requirements.txt
5
+ RUN python -m spacy download en_core_web_sm
6
+ COPY . .
7
+ CMD ["python", "app.py"]