diff --git a/examples/guestbook-go/_src/Dockerfile b/examples/guestbook-go/_src/Dockerfile index adbe6c2237e..e3132af1a50 100644 --- a/examples/guestbook-go/_src/Dockerfile +++ b/examples/guestbook-go/_src/Dockerfile @@ -14,9 +14,9 @@ FROM google/golang:latest -ADD . /gopath/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/_src +ADD . /go/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/_src -WORKDIR /gopath/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/ +WORKDIR /go/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/ RUN cd _src/ && go get && go build -o ../bin/guestbook RUN cp _src/guestbook/Dockerfile .