1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Updated Dockerfile with IB Verbs and RDMA CM dependencies

This commit is contained in:
Dennis Potter 2018-06-23 13:19:31 +02:00
parent 4220ff8111
commit ae22048e0d

View file

@ -80,6 +80,29 @@ RUN dnf -y install \
mosquitto-devel \
comedilib-devel
# IB Verbs Dependencies
RUN dnf -y install \
libibverbs-utils \
libibverbs-devel \
libibverbs-devel-static \
libmlx4 \
libmlx5 \
ibutils \
libibcm \
libibcommon \
libibmad \
libibumad
# RDMA CM Dependencies
RUN dnf -y install \
librdmacm-utils \
librdmacm-devel \
librdmacm \
libibumad-devel \
perftest
# Build & Install Criterion
RUN cd /tmp && \
git clone --recursive https://github.com/Snaipe/Criterion && \