danielRamon commited on
Commit
d57df86
·
1 Parent(s): 07df245

feat ✨: Start Streamlit application with custom port

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -13,3 +13,6 @@ RUN pip install --no-cache-dir -r requirements.txt
13
  # Copy Python source files
14
  COPY *.py .
15
 
 
 
 
 
13
  # Copy Python source files
14
  COPY *.py .
15
 
16
+ # Start Streamlit app
17
+ CMD ["streamlit", "run", "app.py", "--server.port", "2000"]
18
+