From 9602e579d9ef1df3815ad1b437d1a62582afbcb7 Mon Sep 17 00:00:00 2001 From: heyarne Date: Wed, 12 Aug 2020 10:12:29 +0000 Subject: [PATCH] Start migrating to docker-based notebooks --- .dockerignore | 4 ++++ Dockerfile | 8 ++++++++ README.md | 5 +++++ 3 files changed, 17 insertions(+) create mode 100644 .dockerignore create mode 100644 Dockerfile create mode 100644 README.md diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..795a135 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +# don't send downloaded artefacts to the docker build daemon +**/input/**/*.zip +**/input/**/*.SAFE* +**/input/**/*.jp2 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ac6588a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# See https://jupyter-docker-stacks.readthedocs.io/en/latest/using/recipes.html#using-pip-install-or-conda-install-in-a-child-docker-image for more info + +FROM jupyter/scipy-notebook +ENV JUPYTER_LAB_ENABLE=1 + +# RUN pip install geopandas sentinelsat==0.14 descartes && \ +# fix-permissions $CONDA_DIR && \ +# fix-permissions /home/$NB_USER diff --git a/README.md b/README.md new file mode 100644 index 0000000..e3d387c --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Remote Sensing in a Journalistic Contexto + +``` +$ docker build . -t eratosthenes:latest +```