From 062a200f059544a967f6964957e50f307da5a04d Mon Sep 17 00:00:00 2001 From: avangel Date: Fri, 5 Apr 2019 16:34:15 +0200 Subject: [PATCH] Dockerfile: adding python-heatclient --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7f1f368..daacf4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:latest MAINTAINER Jim McVea -LABEL Description="Provides openstack client tools" Version="0.1" +LABEL Description="Provides openstack client tools" Version="0.2" # Alpine-based installation # ######################### @@ -16,7 +16,7 @@ RUN apk add --update \ openssl-dev \ musl-dev \ linux-headers \ - && pip install --upgrade --no-cache-dir pip setuptools python-openstackclient \ + && pip install --upgrade --no-cache-dir pip setuptools python-openstackclient python-heatclient \ && apk del gcc musl-dev linux-headers libffi-dev \ && rm -rf /var/cache/apk/*