From f8eff974a0ac7f1335e064783557e732956cbbd1 Mon Sep 17 00:00:00 2001 From: Andriy Kokhan Date: Sat, 17 Feb 2024 11:07:29 +0200 Subject: [PATCH] Added dependencies required by lxml (from dpugen==0.0.5) Signed-off-by: Andriy Kokhan --- .../dockerfiles/Dockerfile.saichallenger-client-bldr | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dash-pipeline/dockerfiles/Dockerfile.saichallenger-client-bldr b/dash-pipeline/dockerfiles/Dockerfile.saichallenger-client-bldr index 329587686..47915b9b1 100644 --- a/dash-pipeline/dockerfiles/Dockerfile.saichallenger-client-bldr +++ b/dash-pipeline/dockerfiles/Dockerfile.saichallenger-client-bldr @@ -10,6 +10,10 @@ ADD SAI/SAI/test/ptf /SAI/test/ptf # Install PTF test framework & test-cases from SAI repo ADD SAI/SAI/ptf /SAI/ptf/ +# Install dependencies required by lxml (from pyangbind->dpugen==0.0.5) +RUN apt-get update && \ + apt-get install -y libxml2-dev libxslt-dev + # Install the python libraries RUN python3 -m pip install -r /tests/requirements.txt && \ pip3 install scapy \