Skip to content
Commits on Source (8)
...@@ -24,6 +24,10 @@ RUN conda env update -q -f /tmp/environment.yml && \ ...@@ -24,6 +24,10 @@ RUN conda env update -q -f /tmp/environment.yml && \
conda clean -y --all && \ conda clean -y --all && \
conda env export -n "root" conda env export -n "root"
COPY second-environment.yml /tmp/
RUN conda env update -q -f /tmp/second-environment.yml
RUN /opt/conda/envs/other-env/bin/python -m ipykernel install --user --name=other-env
# RENKU_VERSION determines the version of the renku CLI # RENKU_VERSION determines the version of the renku CLI
# that will be used in this image. To find the latest version, # that will be used in this image. To find the latest version,
# visit https://pypi.org/project/renku/#history. # visit https://pypi.org/project/renku/#history.
......
name: "base" name: "base"
channels: channels:
- defaults - defaults
# dependencies: dependencies:
# - add packages here - numpy
# - one per line
prefix: "/opt/conda" prefix: "/opt/conda"
\ No newline at end of file
name: "other-env"
channels:
- defaults
dependencies:
- matplotlib
- ipykernel
prefix: "/opt/conda/envs"
\ No newline at end of file