From e5c7243db2891a460eff989bdfcff29dcd86b618 Mon Sep 17 00:00:00 2001 From: Vincent Fortier Date: Tue, 30 Jul 2024 01:35:29 +0000 Subject: [PATCH] docker-image: Add python3-yaml as mandatory for IGC build --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 71468006f2d..b5ac228f5a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -88,7 +88,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ python3-distutils \ python3-mako \ python3-pip \ - python3-virtualenv + python3-virtualenv \ + python3-yaml # Clean-up apt db RUN apt-get clean && \