826f5a1d45
Why I did it It is to fix the docker-ptf-sai build failure. https://dev.azure.com/mssonic/build/_build/results?buildId=311315&view=logs&j=cef3d8a9-152e-5193-620b-567dc18af272&t=cf595088-5c84-5cf1-9d7e-03331f31d795 2023-07-09T13:53:19.9025355Z �[91mTraceback (most recent call last): 2023-07-09T13:53:19.9025715Z File "/root/ptf/.eggs/setuptools_scm-7.1.0-py3.7.egg/setuptools_scm/_entrypoints.py", line 74, in <module> 2023-07-09T13:53:19.9025933Z from importlib.metadata import entry_points # type: ignore 2023-07-09T13:53:19.9026167Z ModuleNotFoundError: No module named 'importlib.metadata' Work item tracking Microsoft ADO (number only): 24513583 How I did it How to verify it
47 lines
1.5 KiB
Django/Jinja
47 lines
1.5 KiB
Django/Jinja
{% from "dockers/dockerfile-macros.j2" import install_debian_packages, install_python_wheels, copy_files %}
|
|
FROM docker-ptf-{{DOCKER_USERNAME}}:{{DOCKER_USERTAG}}
|
|
|
|
# Make apt-get non-interactive
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Set the apt source, update package cache and install necessary packages
|
|
RUN apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get dist-upgrade -y \
|
|
&& apt-get install -y \
|
|
python3-pip
|
|
|
|
RUN pip3 install crc16 \
|
|
netifaces \
|
|
getmac \
|
|
packet_helper \
|
|
psutil \
|
|
scapy_helper \
|
|
pysubnettree \
|
|
importlib-metadata \
|
|
xmlrunner
|
|
|
|
COPY \
|
|
{% for deb in docker_ptf_sai_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor -%}
|
|
debs/
|
|
|
|
RUN dpkg -i \
|
|
{% for deb in docker_ptf_sai_debs.split(' ') -%}
|
|
debs/{{ deb }}{{' '}}
|
|
{%- endfor %}
|
|
|
|
# Remove old ptf package
|
|
RUN dpkg -r python-ptf
|
|
|
|
# Install new ptf package
|
|
RUN git clone https://github.com/p4lang/ptf.git \
|
|
&& cd ptf \
|
|
&& python3.7 setup.py install --single-version-externally-managed --record /tmp/ptf_install.txt
|
|
|
|
run echo "declare -x LANG=\"C.UTF-8\"" >> /root/.bashrc
|
|
run echo "declare -x LC_ALL=\"C.UTF-8\"" >> /root/.bashrc
|
|
run echo "declare -x PYTHONIOENCODING=\"UTF-8\"" >> /root/.bashrc
|
|
run echo "declare -x VIRTUAL_ENV=\"/root/env-python3\"" >> /root/.bashrc
|