Mentions légales du service

Skip to content
Snippets Groups Projects

Fix Binder instance run

Closed GILLES Sebastien requested to merge sgilles/gettingstartedwithmoderncpp:112_mr into master
1 unresolved thread
7 files
+ 74
74
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -10,9 +10,9 @@ RUN chown ${USER}:${USER} /opt/conda
USER ${USER}
# Create the environment:
WORKDIR /home/${USER}/gettingstartedwithmoderncpp
COPY environment.yml .
RUN conda env create -f environment.yml
WORKDIR /home/${USER}/training_cpp
COPY environment_local.yml .
RUN conda env create -f environment_local.yml
# Make RUN commands use the new environment:
SHELL ["/bin/bash", "-c"]
Loading