Skip to content

Commit 5e12daa

Browse files
authored
Merge pull request eth-cscs#214 from teojgo/fix/singularity_osu
Use an opensuse base image for osu microbenchmarks
2 parents bc23ec0 + bb67124 commit 5e12daa

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

checks/containers/buildah/src/Dockerfile_osu

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
FROM debian:11.6
1+
FROM docker.io/opensuse/leap:15.5
22

3-
RUN apt-get update && apt-get install -y \
4-
build-essential \
5-
wget \
6-
ca-certificates \
7-
--no-install-recommends \
8-
&& rm -rf /var/lib/apt/lists/*
3+
RUN zypper install -y -t pattern devel_basis \
4+
&& zypper install -y which wget gzip gcc-c++ \
5+
&& zypper clean --all
96

107
RUN wget -q http://www.mpich.org/static/downloads/3.1.4/mpich-3.1.4.tar.gz \
118
&& tar xf mpich-3.1.4.tar.gz \
@@ -28,4 +25,4 @@ RUN wget -q http://mvapich.cse.ohio-state.edu/download/mvapich/osu-micro-benchma
2825
&& rm -rf osu-micro-benchmarks-5.3.2 \
2926
&& rm osu-micro-benchmarks-5.3.2.tar.gz
3027

31-
CMD /usr/local/libexec/osu-micro-benchmarks/mpi/pt2pt/osu_bw
28+
CMD usr/local/libexec/osu-micro-benchmarks/mpi/pt2pt/osu_bw

0 commit comments

Comments
 (0)