Sanshruth commited on
Commit
a8d44c1
1 Parent(s): 878d137

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -16,5 +16,8 @@ ENV PATH=$JAVA_HOME/bin:$PATH
16
  COPY . /app
17
  WORKDIR /app
18
 
 
 
 
19
  # Run Streamlit app
20
- CMD ["streamlit", "run", "app.py"]
 
16
  COPY . /app
17
  WORKDIR /app
18
 
19
+ # Expose the port Streamlit runs on
20
+ EXPOSE 7860
21
+
22
  # Run Streamlit app
23
+ CMD streamlit run app.py --server.port 7860 --server.address 0.0.0.0