From 7661ce1d89262b8a3b5b75a0234973bcb6981ea1 Mon Sep 17 00:00:00 2001 From: mmajewsk Date: Fri, 13 Dec 2019 14:52:07 +0100 Subject: [PATCH] added dependencies that allow for running the notebook examples --- .Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.Dockerfile b/.Dockerfile index d775d84..0ed15c0 100644 --- a/.Dockerfile +++ b/.Dockerfile @@ -25,7 +25,12 @@ ENV LARCV_PYTHON_CONFIG=python3.6-config ENV PATH=${LARCV_BASEDIR}/bin:${LARCV_BINDIR}:${PATH} ENV LD_LIBRARY_PATH=${LARCV_LIBDIR}:${LD_LIBRARY_PATH}: ENV PYTHONPATH=${LARCV_BASEDIR}/python:${PYTHONPATH} - +RUN apt-get update && apt-get install -y \ + python3-pip +RUN python3 -m pip install jupyter +RUN python3 -m pip install matplotlib +RUN python3 -m pip install pandas +RUN python3 -m pip install scipy # larcv RUN mkdir -p /app && \ cd /app && \