[build]: Installl setuptool tools explicitly via pip3 install (#6800)

Fix the build failure of asyncsnmp-2.1.0-py3-none-any.whl .
Looks like a recent update on https://packages.debian.org/stretch/libpython3.5-stdlib
3.5.3-1+deb9u1 -> 3.5.3-1+deb9u3 break the build command python3 setup.py bdist_wheel

Signed-off-by: Abhishek Dosi <abdosi@microsoft.com>
This commit is contained in:
abdosi 2021-02-17 04:15:38 -08:00 committed by GitHub
parent f755129507
commit 7a78dccfb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -350,7 +350,8 @@ RUN apt-get purge -y python-click
# For sonic utilities testing
RUN pip install click-default-group click natsort tabulate netifaces==0.10.7 fastentrypoints
# For sonic snmpagent mock testing
# For sonic snmpagent build and mock testing
RUN pip3 install -U setuptools
RUN pip3 install mockredispy==2.9.3
RUN pip3 install "PyYAML>=5.1"