Skip to content
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
16 changes: 10 additions & 6 deletions Dependencies/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update &&\
clang \
git \
openssl \
python3-dev \
python3.8-dev \
pipenv \
vim \
wget \
Expand All @@ -41,6 +41,7 @@ RUN apt-get update &&\
libyaml-cpp-dev \
rapidjson-dev \
pybind11-dev \
python3.8-venv \
&&\
apt-get clean &&\
/bin/true
Expand Down Expand Up @@ -82,7 +83,6 @@ RUN pip3 install --upgrade pip &&\
'python-dateutil==2.8.1' \
'numpy>=1.14' \
'Cython>=0.22' \
'pystan==2.17.1.0' \
'uproot4>=4.0.0' \
'lz4' \
'pbr==5.5.1' \
Expand All @@ -91,11 +91,15 @@ RUN pip3 install --upgrade pip &&\
'h5py' \
'matplotlib' \
'scipy==1.6.1' \
'build' \
&&\
pip3 install -v \
'pystan==2.17.1.0' \
&&\
/bin/true

# ROOT is currently not available in the package manager (latest is in xenial)
RUN ROOT_TARBALL="root_v6.22.06.Linux-ubuntu20-x86_64-gcc9.3.tar.gz" &&\
cd /usr/local &&\
wget https://root.cern/download/$ROOT_TARBALL &&\
tar -xzf $ROOT_TARBALL
#RUN ROOT_TARBALL="root_v6.22.06.Linux-ubuntu20-x86_64-gcc9.3.tar.gz" &&\
# cd /usr/local &&\
# wget https://root.cern/download/$ROOT_TARBALL &&\
# tar -xzf $ROOT_TARBALL