Hemasagar commited on
Commit
7937da7
·
verified ·
1 Parent(s): c7079fc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -1
Dockerfile CHANGED
@@ -13,4 +13,13 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
13
 
14
  COPY --chown=user . /app
15
 
16
- CMD ["streamlit", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
 
 
 
 
 
13
 
14
  COPY --chown=user . /app
15
 
16
+ CMD ["streamlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
17
+
18
+ # RUN pip3 install -r requirements.txt
19
+
20
+ # EXPOSE 8501
21
+
22
+ # HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
23
+
24
+ # ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
25
+