Skip to content
Commits on Source (8)
......@@ -24,6 +24,10 @@ RUN conda env update -q -f /tmp/environment.yml && \
conda clean -y --all && \
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
# that will be used in this image. To find the latest version,
# visit https://pypi.org/project/renku/#history.
......
name: "base"
channels:
- defaults
# dependencies:
# - add packages here
# - one per line
dependencies:
- numpy
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