diff --git a/debian/Dockerfile b/debian/Dockerfile index e468c55..ec4e003 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 076c150..88b1a88 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 \