Skip to content
Snippets Groups Projects
Commit 9f32a8a9 authored by Nicolas M. Thiéry's avatar Nicolas M. Thiéry
Browse files

Fixes + Install some Julia packages

parent 7f439901
No related branches found
No related tags found
No related merge requests found
# A docker file for building the image on GitLab's CI
FROM mambaorg/micromamba:latest
COPY --chown=$MAMBA_USER:$MAMBA_USER . /tmp/binder
# Install files
RUN cp -ra install_file/* /opt/conda/
# Install conda packages
RUN cd /tmp/binder && \
micromamba install -y -n base -f environment.yml && \
micromamba clean --all --yes && \
/usr/local/bin/_entrypoint.sh pip cache purge && \
cp mydocker_entrypoint.sh /opt/conda/bin/mydocker_entrypoint.sh && \
cp -ra install_file/* /opt/conda/
# Install Julia packages
RUN /usr/local/bin/_entrypoint.sh julia -e 'using Pkg; Pkg.add(["SymPy", "Symbolics", "Plots", "Widgets", "IJulia"])'
RUN rm -rf /tmp/binder
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