prd101-wd commited on
Commit
236e5d7
·
verified ·
1 Parent(s): 03747d4

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #pull the image from dockerhub
2
+ FROM parthardas/simplified-react-order-agent:latest
3
+
4
+ #expose the port that Hugging Face Spaces allows by default
5
+ EXPOSE 7860
6
+
7
+ # define command that will override the docker image's Dockerfile CMD command
8
+ CMD ["streamlit", "run", "simplified-react-agent-cafe-order-bot.py", "--server.port=7860", "--server.address=0.0.0.0"]