From 95c52a85a38d04f42759ace9f250d0132e605505 Mon Sep 17 00:00:00 2001 From: John Griffith Date: Wed, 12 Apr 2017 20:57:35 -0600 Subject: [PATCH] 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 --- debian/Dockerfile | 2 +- ubuntu/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index 9ccfe84..702c5fd 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -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 \ diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 6c285be..723cf59 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -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 \