ArchitSharma commited on
Commit
e58c341
1 Parent(s): 1f6053d

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM continuumio/anaconda3:4.4.0
2
+ COPY . /usr/app/
3
+ EXPOSE 7860
4
+ WORKDIR /usr/app/
5
+ RUN pip install -r requirements.txt
6
+ CMD python main.py