14 lines
291 B
Docker
14 lines
291 B
Docker
FROM eoelab.org:1027/ben0i0d/jupyter:py-c
|
|
|
|
USER root
|
|
|
|
RUN apt-get update --yes && \
|
|
apt-get install --yes g++ && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
USER ${NB_UID}
|
|
|
|
# Install Cpp kernel
|
|
RUN mamba install --yes -c conda-forge xeus-cling && \
|
|
mamba clean --all -f -y
|