Skip to content

Commit b63194c

Browse files
ROOT for centos7 (#27)
* Remove comment * More modern root for centos7 * ROOT deps
1 parent 883ce79 commit b63194c

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

dockerfiles/alma9-base

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ RUN yum -y install qt5-qtbase-devel
2929
RUN yum -y install qt6-qtbase-devel
3030

3131
# ROOT
32-
# RUN yum -y install root
3332
RUN wget https://root.cern/download/root_v6.30.02.Linux-almalinux9.3-x86_64-gcc11.4.tar.gz
3433
RUN tar -xzvf root_v6.30.02.Linux-almalinux9.3-x86_64-gcc11.4.tar.gz
3534
RUN echo 'source root/bin/thisroot.sh' >> ~/.bashrc

dockerfiles/centos7-base

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ RUN yum -y install python3-pip python3
3636
RUN yum -y install qt5-qtbase-devel
3737

3838
# ROOT
39-
RUN yum -y install root python36-root
39+
RUN wget https://root.cern/download/root_v6.28.10.Linux-centos8-x86_64-gcc8.5.tar.gz
40+
RUN tar -xzvf root_v6.28.10.Linux-centos8-x86_64-gcc8.5.tar.gz
41+
RUN echo 'source root/bin/thisroot.sh' >> ~/.bashrc
4042

4143
# HEPMC3
4244
RUN yum -y install HepMC3-rootIO-devel

dockerfiles/centos8-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN yum -y install git make cmake wget \
1515

1616
# X11
1717
RUN yum -y install xorg-x11-server-Xorg xorg-x11-xauth libX11-devel \
18-
libXpm-devel libXft-devel libXext-devel libXmu-devel
18+
libXpm-devel libXft-devel libXext-devel libXmu-devel gsl-devel
1919

2020
# OpenGL (EGL GLX egl gl glu glx opengl xmesa)
2121
RUN yum -y install freeglut-devel

dockerfiles/ubuntu20-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN DEBIAN_FRONTEND="noninteractive" apt -y install build-essential
1515

1616
# required packages
1717
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install cmake cmake-curses-gui wget xorg-dev freeglut3-dev qt5-default python2.7-dev libssl-dev liblz4-dev git \
18-
libxerces-c-dev bison flex python3-pip python-tk x11vnc xvfb fvwm
18+
libxerces-c-dev bison flex python3-pip python-tk x11vnc xvfb fvwm xxhash-devel
1919

2020
# python packages
2121
RUN pip3 install scipy matplotlib numpy ipython

0 commit comments

Comments
 (0)