Add back ca-certificates

Deb based distros need to have ca-certificates installed in order
to perform the git calls.  Add them in for Ubuntu and Debian
and get the builds working again.

Change-Id: Idf94e9aa5fb38def734fd71c1b9e7a04acaa348c
This commit is contained in:
John Griffith 2017-04-12 20:57:35 -06:00
parent 0432737f71
commit 95c52a85a3
2 changed files with 2 additions and 2 deletions

2
debian/Dockerfile vendored
View File

@ -14,7 +14,7 @@ ADD $OVERRIDE /
RUN set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends git \
&& apt-get install -y --no-install-recommends git ca-certificates \
&& 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

@ -14,7 +14,7 @@ ADD $OVERRIDE /
RUN set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends git \
&& apt-get install -y --no-install-recommends git ca-certificates \
&& 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 \