-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
46 lines (35 loc) · 986 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
FROM jupyter/minimal-notebook
ARG NB_UID=1000
USER root
# RUN apt update && \
# apt install -y --no-install-recommends git
#gcc libgeos-dev && \
# rm -rf /var/lib/apt/lists/*
# #deps for cartopy https://scitools.org.uk/cartopy/docs/latest/installing.html#requirements
USER $NB_UID
# RUN git clone https://github.com/SciTools/cartopy.git \
# && cd cartopy \
# && conda env create -f environment.yml \
# && conda activate cartopy-dev \
# && pip install -e .
RUN fix-permissions /home/$NB_USER
RUN pip install \
ipywidgets \
#cartopy \
matplotlib \
pandas \
numpy \
folium \
descartes \
geopandas \
rasterio
RUN conda install pyflwdir -c conda-forge
RUN conda install -c conda-forge saga-python
# RUN pip install
# RUN pip install
# RUN pip install
#COPY povo.ipynb .
#COPY povo.geojson .
#TODO CMD ["echo","STARTED JUPYTER at http://localhost:8888/"]