Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added docker dependencies that allow for running the notebook examples #35

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down