tinaok commited on
Commit
eb30136
1 Parent(s): 56e1504
Files changed (2) hide show
  1. Dockerfile +5 -1
  2. 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