Spaces:
Sleeping
Sleeping
modifed docker
Browse files- Dockerfile +2 -0
- src/frontend/app.py +1 -1
Dockerfile
CHANGED
@@ -4,6 +4,8 @@ WORKDIR /app
|
|
4 |
|
5 |
COPY . /app
|
6 |
|
|
|
|
|
7 |
RUN pip install --upgrade pip
|
8 |
RUN pip install -r requirements.txt
|
9 |
|
|
|
4 |
|
5 |
COPY . /app
|
6 |
|
7 |
+
COPY ./src/data/merged_yt_data.csv /app/src/data/merged_yt_data.csv
|
8 |
+
|
9 |
RUN pip install --upgrade pip
|
10 |
RUN pip install -r requirements.txt
|
11 |
|
src/frontend/app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
import streamlit as st
|
2 |
import requests
|
3 |
import pandas as pd
|
4 |
import plotly.express as px
|
|
|
1 |
+
import streamlit as st
|
2 |
import requests
|
3 |
import pandas as pd
|
4 |
import plotly.express as px
|