From 9c8f3ffee0e442e7bcf0e7225520860f086fb412 Mon Sep 17 00:00:00 2001 From: Serguei Bezverkhi Date: Tue, 12 Apr 2016 22:04:39 -0400 Subject: [PATCH] Fixes kolla_toolbox failure due to missing pytz module kolla_toolbox contantly fails to build due to a missing module pytz, add it before the dependent module installation. Change-Id: Ia497f4eef830259e8e27307d6b3100dc7660b99f Closes-Bug: #1569633 --- docker/kolla-toolbox/Dockerfile.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/kolla-toolbox/Dockerfile.j2 b/docker/kolla-toolbox/Dockerfile.j2 index 8e1b400f68..8916bdc333 100644 --- a/docker/kolla-toolbox/Dockerfile.j2 +++ b/docker/kolla-toolbox/Dockerfile.j2 @@ -35,6 +35,7 @@ RUN apt-get -y --no-install-recommends install \ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ && python get-pip.py \ && rm get-pip.py \ + && pip --no-cache-dir install pytz \ && pip --no-cache-dir install \ MySQL-python \ os-client-config==1.16.0 \