mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-17 15:02:57 +00:00

* Removing inkscape * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Adding Rprofile to add plot_mimetypes * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update datascience-notebook/Dockerfile Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> * Update datascience-notebook/Rprofile.site Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> * Adding R notebook tests * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Moving Rprofile.site to minimal; Removing duplicate R test code * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fixing flake8 errors * Update minimal-notebook/Dockerfile Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> * Update minimal-notebook/Rprofile.site Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com> * Removing empty line * Renaming minetypes to mimetypes * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Renaming test module to avoid mypy error * Adding to jupyter.plot_mimetypes * Update R_mimetype_check.py * Update test_mimetypes.py * Update test_R_mimetypes.py * Update test_R_mimetypes.py Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Ayaz Salikhov <mathbunnyru@users.noreply.github.com>
44 lines
1.4 KiB
Docker
44 lines
1.4 KiB
Docker
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
ARG OWNER=jupyter
|
|
ARG BASE_CONTAINER=$OWNER/base-notebook
|
|
FROM $BASE_CONTAINER
|
|
|
|
LABEL maintainer="Jupyter Project <jupyter@googlegroups.com>"
|
|
|
|
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
|
|
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
USER root
|
|
|
|
# Install all OS dependencies for fully functional notebook server
|
|
RUN apt-get update --yes && \
|
|
apt-get install --yes --no-install-recommends \
|
|
# Common useful utilities
|
|
git \
|
|
nano-tiny \
|
|
tzdata \
|
|
unzip \
|
|
vim-tiny \
|
|
# git-over-ssh
|
|
openssh-client \
|
|
# less is needed to run help in R
|
|
# see: https://github.com/jupyter/docker-stacks/issues/1588
|
|
less \
|
|
# nbconvert dependencies
|
|
# https://nbconvert.readthedocs.io/en/latest/install.html#installing-tex
|
|
texlive-xetex \
|
|
texlive-fonts-recommended \
|
|
texlive-plain-generic && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Create alternative for nano -> nano-tiny
|
|
RUN update-alternatives --install /usr/bin/nano nano /bin/nano-tiny 10
|
|
|
|
# Switch back to jovyan to avoid accidental container runs as root
|
|
USER ${NB_UID}
|
|
|
|
# Add R mimetype option to specify how the plot returns from R to the browser
|
|
COPY --chown=${NB_UID}:${NB_GID} Rprofile.site /opt/conda/lib/R/etc/
|