mihirjadhav commited on
Commit
0a8885b
·
verified ·
1 Parent(s): cef4cd6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -1,5 +1,3 @@
1
- USER root
2
-
3
  # Base image
4
  FROM python:3.9
5
 
@@ -25,5 +23,6 @@ COPY . ./
25
  # Expose the port used by Streamlit
26
  EXPOSE 7860
27
 
 
28
  # Start the Streamlit app
29
  CMD ["streamlit", "run", "app.py", "--server.port", "7860"]
 
 
 
1
  # Base image
2
  FROM python:3.9
3
 
 
23
  # Expose the port used by Streamlit
24
  EXPOSE 7860
25
 
26
+ USER root
27
  # Start the Streamlit app
28
  CMD ["streamlit", "run", "app.py", "--server.port", "7860"]