Skip to content

Commit bb73e57

Browse files
ci/cd: stop using /tmp for installed bdsim files
1 parent 664b603 commit bb73e57

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dockerfiles/centos8-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN yum -y install which
3535
RUN wget https://root.cern/download/root_v6.28.10.Linux-centos8-x86_64-gcc8.5.tar.gz
3636
RUN tar -xzvf root_v6.28.10.Linux-centos8-x86_64-gcc8.5.tar.gz
3737
RUN rm -rf root_v6.28.10.Linux-centos8-x86_64-gcc8.5.tar.gz
38-
RUN echo 'source /tmp/root/bin/thisroot.sh' >> ~/.bashrc
38+
RUN echo 'source /bdsim/root/bin/thisroot.sh' >> ~/.bashrc
3939

4040
# HEPMC3
4141
#RUN yum -y install HepMC3-rootIO-devel

dockerfiles/ubuntu20-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install libxxhash-dev libtbb-dev
2626
RUN wget https://root.cern/download/root_v6.30.02.Linux-ubuntu20.04-x86_64-gcc9.4.tar.gz
2727
RUN tar -xzvf root_v6.30.02.Linux-ubuntu20.04-x86_64-gcc9.4.tar.gz
2828
RUN rm -rf root_v6.30.02.Linux-ubuntu20.04-x86_64-gcc9.4.tar.gz
29-
RUN echo 'source /tmp/root/bin/thisroot.sh' >> ~/.bashrc
29+
RUN echo 'source /bdsim/root/bin/thisroot.sh' >> ~/.bashrc
3030

3131
# HDF5
3232
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install libhdf5-dev

dockerfiles/ubuntu22-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install libxxhash-dev libtbb-dev
2929
RUN wget https://root.cern/download/root_v6.30.02.Linux-ubuntu22.04-x86_64-gcc11.4.tar.gz
3030
RUN tar -xzvf root_v6.30.02.Linux-ubuntu22.04-x86_64-gcc11.4.tar.gz
3131
RUN rm -rf root_v6.30.02.Linux-ubuntu22.04-x86_64-gcc11.4.tar.gz
32-
RUN echo 'source /tmp/root/bin/thisroot.sh' >> ~/.bashrc
32+
RUN echo 'source /bdsim/root/bin/thisroot.sh' >> ~/.bashrc
3333

3434
# HDF5
3535
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install libhdf5-dev

dockerfiles/ubuntu24-base

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install cmake cmake-curses-gui w
2222
libxerces-c-dev bison flex x11vnc xvfb fvwm
2323

2424
# python packages
25-
RUN python3 -m venv /tmp/venv-bdsim
26-
RUN /tmp/venv-bdsim/bin/pip install scipy matplotlib numpy ipython pybind11
25+
RUN python3 -m venv /bdsim/venv-bdsim
26+
RUN /bdsim/venv-bdsim/bin/pip install scipy matplotlib numpy ipython pybind11
2727

2828
# ROOT
2929
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install libxxhash-dev libtbb-dev
3030
RUN wget https://root.cern/download/root_v6.32.00.Linux-ubuntu24.04-x86_64-gcc13.2.tar.gz
3131
RUN tar -xzvf root_v6.32.00.Linux-ubuntu24.04-x86_64-gcc13.2.tar.gz
3232
RUN rm -rf root_v6.32.00.Linux-ubuntu24.04-x86_64-gcc13.2.tar.gz
33-
RUN echo 'source /tmp/root/bin/thisroot.sh' >> ~/.bashrc
33+
RUN echo 'source /bdsim/root/bin/thisroot.sh' >> ~/.bashrc
3434

3535
# HDF5
3636
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install libhdf5-dev

0 commit comments

Comments
 (0)