Spaces:
Sleeping
Sleeping
File size: 322 Bytes
739ae08 | 1 2 3 4 5 6 7 8 | #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"] |