18 lines
430 B
Docker
Executable File
18 lines
430 B
Docker
Executable File
ARG DOCKER_NOTEBOOK_IMAGE
|
|
FROM $DOCKER_NOTEBOOK_IMAGE
|
|
ARG JUPYTERHUB_VERSION
|
|
#any additional installations go here.
|
|
|
|
USER root
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y vim && \
|
|
apt-get install -y gcc && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
USER jovyan
|
|
|
|
RUN conda install rstudio
|
|
RUN python3 -m pip install --no-cache jupyterhub==$JUPYTERHUB_VERSION nbresuse jupyter-rsession-proxy
|
|
RUN conda install -c conda-forge fenics
|