Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update iperf3 #136

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions containers/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,14 @@ RUN git reset --hard 3bc455b23f901dae377ca0a558e1e32aa56b31c4 && \

WORKDIR ../

RUN curl -L https://github.com/esnet/iperf/archive/refs/tags/3.13-mt-beta3.tar.gz > iperf3-mt.tar.gz && \
tar -xzf iperf3-mt.tar.gz
RUN curl -L https://github.com/esnet/iperf/releases/download/3.16/iperf-3.16.tar.gz | tar xz && \
cd iperf-3.16 && \
./configure; make install && \
cd .. && \
rm -rf iperf-3.16

WORKDIR iperf-3.13-mt-beta3/
RUN ./configure; make; make install

WORKDIR ../

RUN rm -rf netperf && \
rm -rf iperf-3.13-mt-beta3 && \
dnf clean all && \
curl -O https://raw.githubusercontent.com/jtaleric/tinker/main/networking/super-netperf && \
chmod +x super-netperf
Loading