ArchitSharma's picture
Create Dockerfile
4d88b08
raw
history blame contribute delete
292 Bytes
FROM continuumio/anaconda3:4.4.0
COPY . /usr/app/
WORKDIR /usr/app/
RUN pip install -r requirements.txt
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"]