Spaces:
Running
Running
Jin Zhu
commited on
Commit
·
c1b5b9c
1
Parent(s):
e1a2fb3
update
Browse files- Dockerfile +1 -1
- requirements.txt +3 -0
Dockerfile
CHANGED
|
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 11 |
COPY requirements.txt ./
|
| 12 |
COPY src/ ./src/
|
| 13 |
|
| 14 |
-
RUN pip3 install -r requirements.txt
|
| 15 |
|
| 16 |
EXPOSE 8501
|
| 17 |
|
|
|
|
| 11 |
COPY requirements.txt ./
|
| 12 |
COPY src/ ./src/
|
| 13 |
|
| 14 |
+
RUN pip3 install --no-cache-dir -r requirements.txt
|
| 15 |
|
| 16 |
EXPOSE 8501
|
| 17 |
|
requirements.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
altair
|
| 2 |
streamlit
|
| 3 |
pandas==2.3.1
|
|
|
|
| 1 |
+
# requirements.txt
|
| 2 |
+
--no-cache-dir
|
| 3 |
+
|
| 4 |
altair
|
| 5 |
streamlit
|
| 6 |
pandas==2.3.1
|