From 10aae71aaa36679abd86893659f8acc5085f10d6 Mon Sep 17 00:00:00 2001 From: Paul Bourke Date: Wed, 12 Apr 2017 10:14:00 +0100 Subject: [PATCH] Cleanup packages already installed in scripts Change-Id: I52f8da6faa811b701bd3f431bf3da34598b578c2 --- centos/Dockerfile | 2 +- debian/Dockerfile | 2 +- ubuntu/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/centos/Dockerfile b/centos/Dockerfile index 2ac3a20..bfdb9c8 100644 --- a/centos/Dockerfile +++ b/centos/Dockerfile @@ -13,7 +13,7 @@ ARG OVERRIDE=override ADD $OVERRIDE / RUN set -x \ - && yum install -y python curl git \ + && yum install -y git \ && 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/debian/Dockerfile b/debian/Dockerfile index 0ab8d51..e468c55 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 python ca-certificates curl git \ + && apt-get install -y --no-install-recommends git \ && 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 597a529..076c150 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 python ca-certificates curl git \ + && apt-get install -y --no-install-recommends git \ && 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 \