From 725b811c9286b51102b1379f411b625a28d7ed4d Mon Sep 17 00:00:00 2001 From: Jose Enrique Ruiz Date: Thu, 23 Sep 2021 22:28:23 +0200 Subject: [PATCH] fix binder v0.15 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2d6782d..811db68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt install -y curl # install dependencies - including the stable version of Gammapy COPY binder.py tmp/ -RUN curl -o tmp/environment.yml https://gammapy.org/download/install/gammapy-0.18.1-environment.yml +RUN curl -o tmp/environment.yml https://gammapy.org/download/install/gammapy-0.15-environment.yml WORKDIR tmp/ RUN conda update conda @@ -29,8 +29,8 @@ RUN adduser --disabled-password \ ${NB_USER} # download tutorials and datasets -RUN gammapy download notebooks --out=${HOME}/gammapy-tutorials --release=0.18.1 -RUN gammapy download datasets --out=${HOME}/gammapy-datasets --release=0.18.1 +RUN gammapy download notebooks --out=${HOME}/gammapy-tutorials --release=0.15 +RUN gammapy download datasets --out=${HOME}/gammapy-datasets --release=0.15 # setting ownerships USER root @@ -38,7 +38,7 @@ RUN chown -R gammapy:gammapy ${HOME} # start JupyterLab server in tutorials dir USER ${NB_USER} -WORKDIR ${HOME}/gammapy-tutorials/notebooks-0.18.1 +WORKDIR ${HOME}/gammapy-tutorials/notebooks-0.15 # env vars used in tutorials ENV GAMMAPY_DATA ${HOME}/gammapy-datasets