An error occurred while loading the file. Please try again.
-
Florian de Boissieu authored9b7fdc10
FROM rocker/binder:4.2.3
USER root
# Install biodivMapR
RUN Rscript -e "remotes::install_github('cran/dissUtils'); remotes::install_github('jbferet/biodivMapR')"
# Install jupyterhub, set back user to NB_USER, and define jupyterhub-singleuser as default command
ARG JUPYTERHUB_VERSION=3.0.0
RUN pip3 install --no-cache \
jupyterhub==$JUPYTERHUB_VERSION
USER ${NB_USER}
WORKDIR /home/${NB_USER}
CMD ["jupyterhub-singleuser"]