Commit 2ee63c2 1 parent 06df234 commit 2ee63c2 Copy full SHA for 2ee63c2
File tree 4 files changed +10
-0
lines changed
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
132
132
# Install Python module for psutil
133
133
sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip3 install psutil
134
134
135
+ # Install Python module for blkinfo
136
+ sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip3 install blkinfo
137
+
135
138
# Install Python module for ipaddr
136
139
sudo https_proxy=$https_proxy LANG=C chroot $FILESYSTEM_ROOT pip3 install ipaddr
137
140
Original file line number Diff line number Diff line change @@ -565,6 +565,7 @@ RUN pip3 uninstall -y enum34
565
565
# For sonic-platform-common testing
566
566
RUN pip3 install redis
567
567
RUN pip3 install psutil
568
+ RUN pip3 install blkinfo
568
569
569
570
# For sonic-swss-common testing
570
571
RUN 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"
587
587
588
588
# For sonic-platform-common testing
589
589
RUN pip3 install redis
590
+ RUN pip3 install psutil
591
+ RUN pip3 install blkinfo
590
592
591
593
# For vs image build
592
594
RUN 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"
561
561
# For sonic-platform-common testing
562
562
RUN pip2 install redis
563
563
RUN pip3 install redis
564
+ RUN pip2 install psutil
565
+ RUN pip3 install psutil
566
+ RUN pip2 install blkinfo
567
+ RUN pip3 install blkinfo
564
568
565
569
# For vs image build
566
570
RUN pip2 install pexpect==4.6.0
You can’t perform that action at this time.
0 commit comments