File tree Expand file tree Collapse file tree 5 files changed +21
-14
lines changed Expand file tree Collapse file tree 5 files changed +21
-14
lines changed Original file line number Diff line number Diff line change 1
- FROM debian:bullseye-slim
1
+ # ####
2
+ # Dockerfile for service readiness discovery
3
+ # ####
4
+
5
+ FROM debian:bookworm-slim
2
6
3
7
4
8
RUN apt-get update && \
5
- apt-get install -y iproute2 netcat && \
9
+ apt-get install -y iproute2 netcat-openbsd && \
6
10
rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1
- ARG FEDORA_VERSION=37
2
- FROM fedora:${FEDORA_VERSION}
1
+ # ####
2
+ # Dockerfile for the fio benchmarks
3
+ # ####
3
4
4
- ARG FIO_VERSION=3.30-2
5
- ARG FEDORA_VERSION
6
- RUN dnf install -y tini fio-${FIO_VERSION}.fc${FEDORA_VERSION} && \
7
- dnf clean all && \
8
- rm -rf /var/cache/dnf
5
+ FROM debian:bookworm-slim
6
+
7
+ ARG FIO_VERSION=3.33-3
8
+ RUN apt-get update && \
9
+ apt-get install -y tini fio=${FIO_VERSION} && \
10
+ rm -rf /var/lib/apt/lists/*
9
11
10
12
ENTRYPOINT ["tini" , "-g" , "--" ]
11
13
# Install the setup and run scripts
Original file line number Diff line number Diff line change 2
2
# Dockerfile for the iperf benchmarks
3
3
# ####
4
4
5
- FROM debian:latest
6
5
7
- ARG IPERF_VERSION=2.0.14a+dfsg1-1
6
+ FROM debian:bookworm-slim
7
+
8
+ ARG IPERF_VERSION=2.1.8+dfsg-1
8
9
RUN apt-get update && \
9
10
apt-get install -y "iperf=$IPERF_VERSION" && \
10
11
rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 3
3
# https://www.intel.com/content/www/us/en/develop/documentation/imb-user-guide/top.html
4
4
# ####
5
5
6
- FROM rockylinux:8.6
6
+ FROM rockylinux:9.2
7
7
8
8
ARG MPITESTS_VERSION=5.8
9
9
RUN yum install -y \
Original file line number Diff line number Diff line change 2
2
# Dockerfile for the RDMA bandwidth and latency benchmarks
3
3
# ####
4
4
5
- FROM rockylinux:8.6
5
+ FROM rockylinux:9.2
6
6
7
- ARG PERFTEST_VERSION=4.5
7
+ ARG PERFTEST_VERSION=4.5.0.20
8
8
RUN yum install -y "perftest-${PERFTEST_VERSION}" && \
9
9
yum clean all -y && \
10
10
rm -rf /var/cache
You can’t perform that action at this time.
0 commit comments