diff --git a/HPC/openlb/1.7r0/24.03-lts-sp1/Dockerfile b/HPC/openlb/1.7r0/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..ef812228dd631fe7e6fd16b3dcd7df93f8a0fcad --- /dev/null +++ b/HPC/openlb/1.7r0/24.03-lts-sp1/Dockerfile @@ -0,0 +1,18 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} +ARG VERSION=1.7r0 + +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 + +RUN yum install -y wget make gcc-g++ findutils gnuplot + +RUN wget https://zenodo.org/records/10684609/files/olb-${VERSION}.tgz?download=1 -O /home/olb.tar.gz && \ + tar -xvf /home/olb.tar.gz -C /home && \ + cd /home/olb-${VERSION} && \ + make -j $(nproc) && \ + rm -rf olb* + +WORKDIR /home/olb-${VERSION} + +CMD [ "bash" ] \ No newline at end of file diff --git a/HPC/openlb/meta.yml b/HPC/openlb/meta.yml index 3862a1629124a64aeb2aa30a05ccd5eff95434cb..27391ebcec9ae82a0438ddbceadf151e9a9541c1 100644 --- a/HPC/openlb/meta.yml +++ b/HPC/openlb/meta.yml @@ -1,2 +1,4 @@ 1.7.0-oe2403lts: - path: 1.7.0/24.03-lts/Dockerfile \ No newline at end of file + path: 1.7.0/24.03-lts/Dockerfile +1.7r0-oe2403sp1: + path: HPC/openlb/1.7r0/24.03-lts-sp1/Dockerfile \ No newline at end of file