ArchitSharma commited on
Commit
4d88b08
1 Parent(s): e8afe32

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM continuumio/anaconda3:4.4.0
2
+ COPY . /usr/app/
3
+ WORKDIR /usr/app/
4
+ RUN pip install -r requirements.txt
5
+ CMD ["python", "app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "ArchitSharma-Spam-Message-Predictor.hf.space", "--allow-websocket-origin", "0.0.0.0:7860"]