Install libxml2 for cinder

It is a dependancy of the service

Closes-Bug: #1685700
Change-Id: If7fda8fa2f7c087a6d89757bfdab5d05a5fe3c42
This commit is contained in:
Sam Yaple 2017-04-24 16:28:59 +00:00
parent eae62a99fb
commit a5cd510e5b
3 changed files with 7 additions and 2 deletions

View File

@ -13,6 +13,7 @@ ADD $OVERRIDE /
RUN set -x \
&& yum upgrade -y \
&& yum install -y git \
libxml2 \
&& git init /tmp/common/ \
&& git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \
&& git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \

4
debian/Dockerfile vendored
View File

@ -13,7 +13,9 @@ ADD $OVERRIDE /
RUN set -x \
&& apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends git ca-certificates \
&& apt-get install -y --no-install-recommends git \
ca-certificates \
libxml2 \
&& git init /tmp/common/ \
&& git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \
&& git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \

View File

@ -13,7 +13,9 @@ ADD $OVERRIDE /
RUN set -x \
&& apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends git ca-certificates \
&& apt-get install -y --no-install-recommends git \
ca-certificates \
libxml2 \
&& git init /tmp/common/ \
&& git --git-dir /tmp/common/.git fetch --depth 1 $SCRIPTS_REPO $SCRIPTS_REF \
&& git --work-tree /tmp/common --git-dir /tmp/common/.git checkout FETCH_HEAD \