Skip to content

Commit

Permalink
Removes installing git RPM
Browse files Browse the repository at this point in the history
 The centos golang image should have pure centos and golang stack,
 needed additional dependencies to be installed explicitly via
 application layers.
  • Loading branch information
navidshaikh committed Mar 1, 2018
1 parent 6e5151f commit 18e9fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion golang/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 18e9fae

Please sign in to comment.