KishoreKT commited on
Commit
83304d5
·
verified ·
1 Parent(s): 509a64e

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. app.py +1 -0
Dockerfile CHANGED
@@ -11,6 +11,6 @@ COPY . .
11
  RUN pip3 install -r requirements.txt
12
 
13
  # Define the command to run the Streamlit app on port 8501 and make it accessible externally
14
- CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
15
 
16
  # NOTE: Disable XSRF protection for easier external access in order to make batch predictions
 
11
  RUN pip3 install -r requirements.txt
12
 
13
  # Define the command to run the Streamlit app on port 8501 and make it accessible externally
14
+ CMD ["streamlit", "run", "app.py", "--server.port=8503", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
15
 
16
  # NOTE: Disable XSRF protection for easier external access in order to make batch predictions
app.py CHANGED
@@ -2,6 +2,7 @@ import streamlit as st
2
  import pandas as pd
3
  import requests
4
 
 
5
  # Set the title of the Streamlit app
6
  st.title("Superkart Revenue Prediction")
7
 
 
2
  import pandas as pd
3
  import requests
4
 
5
+ print "Entering SuperKart App"
6
  # Set the title of the Streamlit app
7
  st.title("Superkart Revenue Prediction")
8