Skip to content

Commit 664b603

Browse files
stop using /tmp for installed bdsim files
1 parent c7bc2ef commit 664b603

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dockerfiles/alma9-base

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM almalinux:9
33
SHELL ["/bin/bash", "-c"]
44
ENTRYPOINT ["/bin/bash"]
55

6-
WORKDIR /tmp
6+
WORKDIR /bdsim
77

88
RUN yum -y install epel-release
99
RUN yum -y install epel-next-release
@@ -37,7 +37,7 @@ RUN yum -y install which xxhash-libs tbb-devel
3737
RUN wget https://root.cern/download/root_v6.30.02.Linux-almalinux9.3-x86_64-gcc11.4.tar.gz
3838
RUN tar -xzvf root_v6.30.02.Linux-almalinux9.3-x86_64-gcc11.4.tar.gz
3939
RUN rm -rfv root_v6.30.02.Linux-almalinux9.3-x86_64-gcc11.4.tar.gz
40-
RUN echo 'source /tmp/root/bin/thisroot.sh' >> ~/.bashrc
40+
RUN echo 'source /bdsim/root/bin/thisroot.sh' >> ~/.bashrc
4141

4242
# HEPMC3
4343
# RUN yum -y install root6

dockerfiles/centos8-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM centos:8
33
SHELL ["/bin/bash", "-c"]
44
ENTRYPOINT ["/bin/bash"]
55

6-
WORKDIR /tmp
6+
WORKDIR /bdsim
77

88
RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
99
RUN sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

dockerfiles/ubuntu20-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN mkdir -p /run/systemd && echo 'docker' > /run/systemd/container
55
SHELL ["/bin/bash", "-c"]
66
ENTRYPOINT ["/bin/bash"]
77

8-
WORKDIR /tmp
8+
WORKDIR /bdsim
99

1010
# start with more uptodate packages
1111
RUN apt-get update

dockerfiles/ubuntu22-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN mkdir -p /run/systemd && echo 'docker' > /run/systemd/container
55
SHELL ["/bin/bash", "-c"]
66
ENTRYPOINT ["/bin/bash"]
77

8-
WORKDIR /tmp
8+
WORKDIR /bdsim
99

1010
# start with more uptodate packages
1111
RUN apt-get update

dockerfiles/ubuntu24-base

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RUN mkdir -p /run/systemd && echo 'docker' > /run/systemd/container
55
SHELL ["/bin/bash", "-c"]
66
ENTRYPOINT ["/bin/bash"]
77

8-
WORKDIR /tmp
8+
WORKDIR /bdsim
99

1010
# start with more uptodate packages
1111
RUN apt-get update
@@ -18,7 +18,7 @@ RUN DEBIAN_FRONTEND="noninteractive" apt-cache search python qt5 qt6
1818
# required packages
1919
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install cmake cmake-curses-gui wget \
2020
xorg-dev freeglut3-dev qtbase5-dev qt5-qmake qt6-base-dev \
21-
python3 python3-pip python3-venv libssl-dev liblz4-dev git \
21+
python3 python3-pip python3-venv libssl-dev liblz4-dev git \
2222
libxerces-c-dev bison flex x11vnc xvfb fvwm
2323

2424
# python packages

0 commit comments

Comments
 (0)