Skip to content

Commit

Permalink
Fix netifaces install in Dockerfile (#3726)
Browse files Browse the repository at this point in the history
  • Loading branch information
j316chuck authored Nov 29, 2024
1 parent 23e6a2e commit 7824d90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ RUN if [ -n "$MOFED_VERSION" ] ; then \
wget -qO - http://www.mellanox.com/downloads/ofed/RPM-GPG-KEY-Mellanox | sudo apt-key add - && \
wget -P /etc/apt/sources.list.d/ http://linux.mellanox.com/public/repo/mlnx_ofed/$MOFED_VERSION/ubuntu22.04/mellanox_mlnx_ofed.list && \
apt-get update && \
apt-get install -y mlnx-ofed-dpdk-upstream-libs-user-only ; \
apt-get install -y mlnx-ofed-dpdk-upstream-libs-user-only && \
pip uninstall -y netifaces && pip install netifaces==0.11.0 ; \
fi

##########################
Expand Down

0 comments on commit 7824d90

Please sign in to comment.