rasmodev commited on
Commit
b8b2734
1 Parent(s): 28f594a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -13,6 +13,9 @@ RUN pip install -r /app/requirements.txt
13
  # Copy your Streamlit application code into the container
14
  COPY ./app.py /app/app.py
15
 
 
 
 
16
  # Copy the model and key components into the container
17
  COPY ./model_and_key_components.pkl /app/model_and_key_components.pkl
18
 
 
13
  # Copy your Streamlit application code into the container
14
  COPY ./app.py /app/app.py
15
 
16
+ # Copy the dashboard's screenshot into the container
17
+ COPY ./default.jpg /app/default.jpg
18
+
19
  # Copy the model and key components into the container
20
  COPY ./model_and_key_components.pkl /app/model_and_key_components.pkl
21