Files
docker-stacks/minimal-notebook/Dockerfile
Dan Leehr f896eb186e Adds texlive-xetex package
texlive-xetex provides xelatex, fixing `nbconvert failed: xelatex not found on PATH` issue
2017-03-16 10:14:43 -04:00

34 lines
786 B
Docker

# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
FROM jupyter/base-notebook
MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER root
# Install all OS dependencies for fully functional notebook server
RUN apt-get update && apt-get install -yq --no-install-recommends \
git \
vim \
jed \
emacs \
build-essential \
python-dev \
unzip \
libsm6 \
pandoc \
texlive-latex-base \
texlive-latex-extra \
texlive-fonts-extra \
texlive-fonts-recommended \
texlive-generic-recommended \
texlive-xetex \
libxrender1 \
inkscape \
&& apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Switch back to jovyan to avoid accidental container runs as root
USER $NB_USER