From bbcd03e5e1b9eb5df0fd45ed85a55421878b4b91 Mon Sep 17 00:00:00 2001 From: Steffen Vogel <stvogel@eonerc.rwth-aachen.de> Date: Fri, 15 May 2020 10:31:13 +0200 Subject: [PATCH] simplify conda installation --- Dockerfile | 1 - environment.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eaa1908..e2ba924 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,6 @@ RUN pip install -r requirements.txt # .. Or update conda base environment to match specifications in environment.yml ADD environment.yml /tmp/environment.yml -RUN sed -i "s|name\: jupyter-example-profile|name\: base|g" /tmp/environment.yml # we need to replace the name of the environment with base such that we can update the base environment here # All packages specified in environment.yml are installed in the base environment RUN conda env update -f /tmp/environment.yml && \ diff --git a/environment.yml b/environment.yml index 4ffd541..2b1fca3 100644 --- a/environment.yml +++ b/environment.yml @@ -1,4 +1,4 @@ -name: jupyter-example-profile +name: base channels: - conda-forge dependencies: -- GitLab