Spaces:
Running
Running
Yao-Ting Yao
commited on
Commit
·
61b9eb6
1
Parent(s):
c79eaa8
Update Dockerfile
Browse files- Dockerfile +6 -4
Dockerfile
CHANGED
@@ -9,11 +9,13 @@ RUN apt-get update && apt-get install -y \
|
|
9 |
git \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
-
COPY requirements.txt ./
|
13 |
-
|
14 |
-
|
|
|
15 |
|
16 |
-
|
|
|
17 |
|
18 |
EXPOSE 8501
|
19 |
|
|
|
9 |
git \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
+
#COPY requirements.txt ./
|
13 |
+
|
14 |
+
#RUN pip3 install -r requirements.txt
|
15 |
+
RUN pip3 install pandas==2.0.3 plotly==6.0.0 numpy==1.26.3 rasterio==1.4.3 Pillow==11.1.0 shapely==2.0.7 streamlit==1.44.1 fsspec==2025.3.2 s3fs==2025.3.2
|
16 |
|
17 |
+
COPY data/ ./data/
|
18 |
+
COPY src/ ./src/
|
19 |
|
20 |
EXPOSE 8501
|
21 |
|