AumPandya commited on
Commit
031ab7f
1 Parent(s): e6907d2

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.8
2
+
3
+ RUN pip install streamlit spacy
4
+
5
+ COPY . /app
6
+ WORKDIR /app
7
+
8
+ EXPOSE 8501
9
+
10
+ CMD ["streamlit", "run", "--server.port", "8501", "app.py"]