Spaces:
Build error
Build error
add data tree (#1)
Browse files- add data tree (771188aa8386e679b0d78aad2e930b5854a34194)
- Update Dockerfile (bd19e21da991b5803ec62503934cbaf9f1294144)
- Dockerfile +5 -1
- requirements.txt +1 -0
Dockerfile
CHANGED
|
@@ -13,7 +13,11 @@ RUN chmod 777 /data
|
|
| 13 |
RUN apt-get update && apt-get install -y wget \
|
| 14 |
&& wget https://data-eurogoship.ifremer.fr/copy_seadatanet/1H_file.zarr \
|
| 15 |
&& mv 1H_file.zarr /data/
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
CMD ["panel", "serve", "/code/app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*"]
|
| 18 |
|
| 19 |
RUN mkdir /.cache
|
|
|
|
| 13 |
RUN apt-get update && apt-get install -y wget \
|
| 14 |
&& wget https://data-eurogoship.ifremer.fr/copy_seadatanet/1H_file.zarr \
|
| 15 |
&& mv 1H_file.zarr /data/
|
| 16 |
+
RUN wget https://data-eurogoship.ifremer.fr/bathymetrie/bathy6min.nc \
|
| 17 |
+
&& mv bathy6min.nc /data/
|
| 18 |
+
RUN wget https://data-eurogoship.ifremer.fr/copy_seadatanet/table.csv \
|
| 19 |
+
&& mv table.csv /data/
|
| 20 |
+
|
| 21 |
CMD ["panel", "serve", "/code/app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*"]
|
| 22 |
|
| 23 |
RUN mkdir /.cache
|
requirements.txt
CHANGED
|
@@ -10,3 +10,4 @@ hvplot
|
|
| 10 |
xarray==2024.2.0
|
| 11 |
scipy
|
| 12 |
matplotlib
|
|
|
|
|
|
| 10 |
xarray==2024.2.0
|
| 11 |
scipy
|
| 12 |
matplotlib
|
| 13 |
+
datatree
|