Commit 31f4aba7 authored by Brendan Burns's avatar Brendan Burns

Fix some paths in the Dockerfiles.

parent 9c8ba849
...@@ -2,7 +2,7 @@ FROM google/golang:latest ...@@ -2,7 +2,7 @@ FROM google/golang:latest
RUN mkdir -p /gopath/src/github.com/GoogleCloudPlatform/ && cd /gopath/src/github.com/GoogleCloudPlatform/ && \ RUN mkdir -p /gopath/src/github.com/GoogleCloudPlatform/ && cd /gopath/src/github.com/GoogleCloudPlatform/ && \
git clone http://github.com/GoogleCloudPlatform/kubernetes && \ git clone http://github.com/GoogleCloudPlatform/kubernetes && \
cd /gopath/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/src/ && \ cd /gopath/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/_src/ && \
go get && go build -o ../bin/guestbook && \ go get && go build -o ../bin/guestbook && \
cp ./guestbook/Dockerfile /gopath/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/ cp ./guestbook/Dockerfile /gopath/src/github.com/GoogleCloudPlatform/kubernetes/examples/guestbook-go/
......
FROM busybox:ubuntu-14.04 FROM busybox:ubuntu-14.04
ADD ./bin/guestbook /app/guestbook ADD ./bin/guestbook /app/guestbook
ADD ./src/public/index.html /app/public/index.html ADD ./_src/public/index.html /app/public/index.html
ADD ./src/public/script.js /app/public/script.js ADD ./_src/public/script.js /app/public/script.js
ADD ./src/public/style.css /app/public/style.css ADD ./_src/public/style.css /app/public/style.css
WORKDIR /app WORKDIR /app
CMD ["./guestbook"] CMD ["./guestbook"]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment