#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"] |