Update Dockerfile
Browse files- 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 |
|