libxml2 is required by the service

Change-Id: I9e13bfe7d0bed965aaebf667fb42b08192c4e6d2
This commit is contained in:
Sam Yaple 2017-04-29 09:24:00 +00:00
parent 507ead1737
commit 366670ee37
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 \