From 947cf611f2f935701b2cef3333532b1c325e02bc Mon Sep 17 00:00:00 2001 From: Archana Date: Fri, 3 Dec 2021 07:10:54 +0530 Subject: [PATCH] Jinja2 prerequisite set up on the docker Jinja2 rev 2.10.1 is required for the driver wrappers code gen. The same is set up in the bionic docker file. Signed-off-by: Archana --- tests/docker/bionic/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/docker/bionic/Dockerfile b/tests/docker/bionic/Dockerfile index 50f5a7fba8..28d33b7553 100644 --- a/tests/docker/bionic/Dockerfile +++ b/tests/docker/bionic/Dockerfile @@ -60,6 +60,10 @@ RUN apt-get update \ pkg-config \ && rm -rf /var/lib/apt/lists/* +# Jinja2 is required for driver dispatch code generation. +RUN python3 -m pip install \ + jinja2==2.10.1 types-jinja2 + # Build a static, legacy openssl from sources with sslv3 enabled # Based on https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 (build-openssl.sh) # Note: openssl-1.0.2 and earlier has known build issues with parallel make.