From d351bd4b3dec12a86fdb9bdaaa468aeb69e0b735 Mon Sep 17 00:00:00 2001 From: Scott Little Date: Fri, 7 Jun 2019 11:39:52 -0400 Subject: [PATCH] build-helm-charts.sh now requires python-yaml A recent change, https://review.opendev.org/#/c/662087/ , added 'import yaml' to build-helm-charts.sh. However the docker build environmnet does not include python-yaml in it's Dockerfile. This update adds the missing python-yaml to the Dockerfile Change-Id: Ia446bc587efb4b1997008661a4b584183891bb4f Closes-Bug: 1832017 Signed-off-by: Scott Little --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 99386d36..f9f6633b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,6 +82,7 @@ RUN groupadd -g 751 cgts && \ python-pip \ python-testrepository \ python-tox \ + python-yaml \ postgresql \ qemu-kvm \ quilt \