From 6fe13ab72684964c5dd8215db30ae3c78a1dabe8 Mon Sep 17 00:00:00 2001 From: Matthias Luebken Date: Sat, 20 Feb 2016 23:16:51 +0100 Subject: [PATCH] using official golang image --- examples/guestbook-go/_src/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/guestbook-go/_src/Dockerfile b/examples/guestbook-go/_src/Dockerfile index e3132af1a50..f342d028622 100644 --- a/examples/guestbook-go/_src/Dockerfile +++ b/examples/guestbook-go/_src/Dockerfile @@ -12,9 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM google/golang:latest +FROM golang:latest -ADD . /go/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/_src +ADD . /gopath/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/_src WORKDIR /go/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/ RUN cd _src/ && go get && go build -o ../bin/guestbook