diff --git a/centos/Dockerfile b/centos/Dockerfile index ad5f205..3c587c0 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 be87e19..a01c663 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 f4165d3..844b23c 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 \