prd101-wd's picture
Create Dockerfile
739ae08 verified
raw
history blame contribute delete
322 Bytes
#pull the image from dockerhub
FROM parthardas/multidocument-rag:latest
#expose the port that Hugging Face Spaces allows by default
EXPOSE 7860
# define command that will override the docker image's Dockerfile CMD command
CMD ["streamlit", "run", "streamlit-rag-app.py", "--server.port=7860", "--server.address=0.0.0.0"]