Commit c9428336 authored by Min RK's avatar Min RK

Merge pull request #128 from parente/add-libav

Add libav-tools for matplotlib animation
parents a2a2694f e66ffa31
...@@ -20,6 +20,11 @@ RUN apt-get update && \ ...@@ -20,6 +20,11 @@ RUN apt-get update && \
julia \ julia \
libnettle4 && apt-get clean libnettle4 && apt-get clean
# libav-tools for matplotlib anim
RUN apt-get update && \
apt-get install -y --no-install-recommends libav-tools && \
apt-get clean
USER jovyan USER jovyan
# Install Python 3 packages # Install Python 3 packages
...@@ -87,7 +92,7 @@ RUN conda install --yes \ ...@@ -87,7 +92,7 @@ RUN conda install --yes \
'r-randomforest=4.6*' && conda clean -yt 'r-randomforest=4.6*' && conda clean -yt
# Install IJulia packages as jovyan and then move the kernelspec out # Install IJulia packages as jovyan and then move the kernelspec out
# to the system share location. Avoids problems with runtime UID change not # to the system share location. Avoids problems with runtime UID change not
# taking effect properly on the .local folder in the jovyan home dir. # taking effect properly on the .local folder in the jovyan home dir.
RUN julia -e 'Pkg.add("IJulia")' && \ RUN julia -e 'Pkg.add("IJulia")' && \
mv /home/$NB_USER/.local/share/jupyter/kernels/* $CONDA_DIR/share/jupyter/kernels/ && \ mv /home/$NB_USER/.local/share/jupyter/kernels/* $CONDA_DIR/share/jupyter/kernels/ && \
......
...@@ -4,6 +4,13 @@ FROM jupyter/minimal-notebook ...@@ -4,6 +4,13 @@ FROM jupyter/minimal-notebook
MAINTAINER Jupyter Project <jupyter@googlegroups.com> MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER root
# libav-tools for matplotlib anim
RUN apt-get update && \
apt-get install -y --no-install-recommends libav-tools && \
apt-get clean
USER jovyan USER jovyan
# Install Python 3 packages # Install Python 3 packages
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment