File tree 4 files changed +44
-0
lines changed
4 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### Added
6
6
7
+ - Binder for Pandora's notebooks. [ #215 ]
7
8
- Version handling with setuptools_scm [ #212 ]
8
9
9
10
## 1.0.0 (March 2021)
Original file line number Diff line number Diff line change
1
+ FROM ubuntu:20.04
2
+ RUN apt-get update && apt-get -y update
3
+ RUN apt-get install -y build-essential python3.6 python3-pip python3-dev
4
+ RUN pip3 -q install pip --upgrade
5
+
6
+ COPY notebooks/notebook_requirements.txt ./
7
+
8
+ RUN pip3 install --no-cache notebook && \
9
+ pip3 install numpy && \
10
+ pip3 install -r notebook_requirements.txt
11
+
12
+
13
+ ARG NB_USER=user
14
+ ARG NB_UID=1000
15
+ ENV USER ${NB_USER}
16
+ ENV NB_UID ${NB_UID}
17
+ ENV HOME /home/${NB_USER}
18
+
19
+ RUN adduser --disabled-password \
20
+ --gecos "Default user" \
21
+ --uid ${NB_UID} \
22
+ ${NB_USER}
23
+
24
+
25
+ USER $NB_USER
26
+
27
+ COPY --chown=1000:100 . Pandora
28
+
29
+ WORKDIR /Pandora
Original file line number Diff line number Diff line change 9
9
<a href =" https://codecov.io/gh/CNES/Pandora " ><img src =" https://codecov.io/gh/CNES/Pandora/branch/master/graph/badge.svg?token=IENWO02GB3 " /></a >
10
10
<a href =' https://pandora.readthedocs.io/?badge=latest ' ><img src =' https://readthedocs.org/projects/pandora/badge/?version=latest ' alt =' Documentation Status ' /></a >
11
11
<a href =" https://opensource.org/licenses/Apache-2.0/ " ><img src =" https://img.shields.io/badge/License-Apache%202.0-blue.svg " ></a >
12
+ <a href =" https://mybinder.org/v2/gh/CNES/Pandora/master " ><img src =" https://mybinder.org/badge_logo.svg " ></a >
12
13
</p >
13
14
14
15
<p align =" center " >
Original file line number Diff line number Diff line change
1
+ numpy
2
+ pandora-plugin-libsgm
3
+ xarray>=0.13.*
4
+ scipy
5
+ rasterio
6
+ json-checker
7
+ numba>=0.47.*
8
+ transitions
9
+ scikit-image
10
+ ipyvolume
11
+ bokeh
12
+ matplotlib
13
+ graphviz
You can’t perform that action at this time.
0 commit comments