Spaces:
Running
Running
Fix missing streamlit runtime dependency
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -12,7 +12,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|
| 14 |
COPY requirements.txt /app/requirements.txt
|
| 15 |
-
RUN pip install --upgrade pip
|
|
|
|
|
|
|
| 16 |
|
| 17 |
COPY . /app
|
| 18 |
|
|
|
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|
| 14 |
COPY requirements.txt /app/requirements.txt
|
| 15 |
+
RUN pip install --upgrade pip \
|
| 16 |
+
&& pip install -r /app/requirements.txt \
|
| 17 |
+
&& pip install streamlit plotly datasets
|
| 18 |
|
| 19 |
COPY . /app
|
| 20 |
|