File tree Expand file tree Collapse file tree 4 files changed +10
-0
lines changed
Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,9 @@ sudo rm -rf $FILESYSTEM_ROOT/$REDIS_DUMP_LOAD_PY3_WHEEL_NAME
132132# Install Python module for psutil
133133sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip3 install psutil
134134
135+ # Install Python module for blkinfo
136+ sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip3 install blkinfo
137+
135138# Install Python module for ipaddr
136139sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip3 install ipaddr
137140
Original file line number Diff line number Diff line change @@ -565,6 +565,7 @@ RUN pip3 uninstall -y enum34
565565# For sonic-platform-common testing
566566RUN pip3 install redis
567567RUN pip3 install psutil
568+ RUN pip3 install blkinfo
568569
569570# For sonic-swss-common testing
570571RUN pip3 install Pympler==1.0
Original file line number Diff line number Diff line change @@ -587,6 +587,8 @@ RUN pip3 install "lxml==4.9.1"
587587
588588# For sonic-platform-common testing
589589RUN pip3 install redis
590+ RUN pip3 install psutil
591+ RUN pip3 install blkinfo
590592
591593# For vs image build
592594RUN pip3 install pexpect==4.8.0
Original file line number Diff line number Diff line change @@ -561,6 +561,10 @@ RUN pip3 install "lxml==4.9.1"
561561# For sonic-platform-common testing
562562RUN pip2 install redis
563563RUN pip3 install redis
564+ RUN pip2 install psutil
565+ RUN pip3 install psutil
566+ RUN pip2 install blkinfo
567+ RUN pip3 install blkinfo
564568
565569# For vs image build
566570RUN pip2 install pexpect==4.6.0
You can’t perform that action at this time.
0 commit comments