tinaok commited on
Commit
bd19e21
1 Parent(s): 771188a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
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