From 3bce8f1207d64792406e61328cbf80f36379bc34 Mon Sep 17 00:00:00 2001 From: Jose Enrique Ruiz Date: Sat, 27 Jul 2019 11:53:35 +0200 Subject: [PATCH] Add Dockerfile for v0.13 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 125c2b6..ac6c465 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN pip install --upgrade pip # 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.12-environment.yml +RUN curl -o tmp/environment.yml https://gammapy.org/download/install/gammapy-0.13-environment.yml WORKDIR tmp/ RUN conda update conda @@ -28,8 +28,8 @@ RUN adduser --disabled-password \ ${NB_USER} # download tutorials and datasets -RUN gammapy download notebooks --out=${HOME}/gammapy-tutorials --release=0.12 -RUN gammapy download datasets --out=${HOME}/gammapy-datasets --release=0.12 +RUN gammapy download notebooks --out=${HOME}/gammapy-tutorials --release=0.13 +RUN gammapy download datasets --out=${HOME}/gammapy-datasets --release=0.13 # setting ownerships USER root @@ -37,7 +37,7 @@ RUN chown -R gammapy:gammapy ${HOME} # start JupyterLab server in tutorials dir USER ${NB_USER} -WORKDIR ${HOME}/gammapy-tutorials/notebooks-0.12 +WORKDIR ${HOME}/gammapy-tutorials/notebooks-0.13 # env vars used in tutorials ENV GAMMAPY_DATA ${HOME}/gammapy-datasets