prd101-wd's picture
Create Dockerfile
236e5d7 verified
raw
history blame
353 Bytes
#pull the image from dockerhub
FROM parthardas/simplified-react-order-agent: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", "simplified-react-agent-cafe-order-bot.py", "--server.port=7860", "--server.address=0.0.0.0"]