From 18e9faeb6f9d91c6a8d5c0bbdf2797c51f1cd1b8 Mon Sep 17 00:00:00 2001 From: Navid Shaikh Date: Thu, 1 Mar 2018 15:05:34 +0530 Subject: [PATCH] Removes installing git RPM The centos golang image should have pure centos and golang stack, needed additional dependencies to be installed explicitly via application layers. --- golang/centos7/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/golang/centos7/Dockerfile b/golang/centos7/Dockerfile index 2b265ed6..01c4527f 100644 --- a/golang/centos7/Dockerfile +++ b/golang/centos7/Dockerfile @@ -4,7 +4,7 @@ ENV GOPATH /go RUN yum -y update && \ mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH" && \ - yum -y install git golang && yum clean all + yum -y install golang && yum clean all ENV PATH $PATH:$GOPATH/bin