[docker-vs][docker-orchagent] install python3 dependent packages for restore_neighbors.py (#6207)
Install the necessary python3 dependent packages to convert restore_neighbor.py to support python3 as python2 is EOL. See: Azure/sonic-swss#1542 Signed-off-by: Zhenggen Xu <zxu@linkedin.com>
This commit is contained in:
parent
290f66bbb8
commit
182a809dc3
@ -44,6 +44,12 @@ RUN pip2 install \
|
||||
netifaces==0.10.7 \
|
||||
monotonic==1.5
|
||||
|
||||
# Dependencies of restore_neighbors.py
|
||||
RUN pip3 install \
|
||||
scapy==2.4.4 \
|
||||
pyroute2==0.5.14 \
|
||||
netifaces==0.10.9
|
||||
|
||||
{% if ( CONFIGURED_ARCH == "armhf" or CONFIGURED_ARCH == "arm64" ) %}
|
||||
# Remove installed gcc
|
||||
RUN apt-get remove -y gcc-8
|
||||
|
@ -91,6 +91,12 @@ RUN pip2 install crontab
|
||||
RUN pip3 install pyangbind==0.8.1
|
||||
RUN pip3 uninstall -y enum34
|
||||
|
||||
# Dependencies of restore_neighbors.py
|
||||
RUN pip3 install \
|
||||
scapy==2.4.4 \
|
||||
pyroute2==0.5.14 \
|
||||
netifaces==0.10.9
|
||||
|
||||
{% if docker_sonic_vs_debs.strip() -%}
|
||||
# Copy locally-built Debian package dependencies
|
||||
{%- for deb in docker_sonic_vs_debs.split(' ') %}
|
||||
|
Loading…
Reference in New Issue
Block a user