ArchitSharma's picture
Update Dockerfile
770a249
raw
history blame
No virus
298 Bytes
FROM continuumio/anaconda3:4.4.0
COPY . /usr/app/
WORKDIR /usr/app/
RUN pip install -r requirements.txt
CMD ["python", "main.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "ArchitSharma-Movie-Recommendation-System.hf.space", "--allow-websocket-origin", "0.0.0.0:7860"]