mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-09 19:12:59 +00:00
61 lines
1.5 KiB
Docker
61 lines
1.5 KiB
Docker
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
ARG OWNER=jupyter
|
|
ARG BASE_CONTAINER=$OWNER/minimal-notebook
|
|
FROM $BASE_CONTAINER
|
|
|
|
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
|
|
|
|
USER root
|
|
|
|
# R pre-requisites
|
|
RUN apt-get update --yes && \
|
|
apt-get install --yes --no-install-recommends \
|
|
fonts-dejavu \
|
|
unixodbc \
|
|
unixodbc-dev \
|
|
r-cran-rodbc \
|
|
gfortran \
|
|
gcc && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
USER ${NB_UID}
|
|
|
|
# R packages including IRKernel which gets installed globally.
|
|
# r-e1071: dependency of the caret R package
|
|
RUN mamba install --quiet --yes \
|
|
'r-base' \
|
|
'r-caret' \
|
|
'r-crayon' \
|
|
'r-devtools' \
|
|
'r-e1071' \
|
|
'r-forecast' \
|
|
'r-hexbin' \
|
|
'r-htmltools' \
|
|
'r-htmlwidgets' \
|
|
'r-irkernel' \
|
|
'r-nycflights13' \
|
|
'r-randomforest' \
|
|
'r-rcurl' \
|
|
'r-rmarkdown' \
|
|
'r-rodbc' \
|
|
'r-rsqlite' \
|
|
'r-shiny' \
|
|
'r-tidyverse' \
|
|
'unixodbc' && \
|
|
mamba clean --all -f -y && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|
|
|
|
# `r-tidymodels` is not easy to install under arm
|
|
# hadolint ignore=SC2039
|
|
RUN set -x && \
|
|
arch=$(uname -m) && \
|
|
if [ "${arch}" == "x86_64" ]; then \
|
|
mamba install --quiet --yes \
|
|
'r-tidymodels' && \
|
|
mamba clean --all -f -y && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"; \
|
|
fi;
|