Skip to content
Snippets Groups Projects
Commit bbcd03e5 authored by Steffen Vogel's avatar Steffen Vogel :santa_tone2:
Browse files

simplify conda installation

parent ffa09ec0
No related branches found
No related tags found
No related merge requests found
......@@ -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 && \
......
name: jupyter-example-profile
name: base
channels:
- conda-forge
dependencies:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment