prd101-wd/rag-multi-document-upload
0
1#pull the image from dockerhub2FROM parthardas/multidocument-rag:latest3 4#expose the port that Hugging Face Spaces allows by default5EXPOSE 78606 7# define command that will override the docker image's Dockerfile CMD command8CMD ["streamlit", "run", "streamlit-rag-app.py", "--server.port=7860", "--server.address=0.0.0.0"]