From 494729341d1973f4c04f9669b75ad22b7ad91ea3 Mon Sep 17 00:00:00 2001 From: Paul Bourke Date: Mon, 11 Jan 2016 15:30:16 +0000 Subject: [PATCH] Fix missing jinja2 in source images for mesos The base image is missing python-jinja2 for source builds which causes the kolla_mesos_start script to fail on import. Change-Id: I8550115dd42f4401a3351cd7c466fbeb1e02a665 Closes-Bug: #1532275 --- docker/base/Dockerfile.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/base/Dockerfile.j2 b/docker/base/Dockerfile.j2 index 6cf31a7968..59b8f2429d 100644 --- a/docker/base/Dockerfile.j2 +++ b/docker/base/Dockerfile.j2 @@ -152,6 +152,7 @@ RUN yum install -y \ # Update packages RUN yum -y install \ curl \ + python-jinja2 \ python-kazoo \ python-six \ sudo \