Merge pull request #226 from jackgr/master

Fix bug in Docker builds.
pull/170/head
Jack Greenfield 9 years ago
commit e1a76a409c

@ -26,9 +26,9 @@ ENV KUBE_VERSION v1.0.5
RUN curl -fsSL -o kubectl https://storage.googleapis.com/kubernetes-release/release/$KUBE_VERSION/bin/linux/amd64/kubectl \ RUN curl -fsSL -o kubectl https://storage.googleapis.com/kubernetes-release/release/$KUBE_VERSION/bin/linux/amd64/kubectl \
&& chmod +x kubectl && chmod +x kubectl
COPY . "$GOPATH"/src COPY . "$GOPATH"/src/github.com/kubernetes/deployment-manager
WORKDIR "$GOPATH"/src/manager WORKDIR "$GOPATH"/src/github.com/kubernetes/deployment-manager/manager
RUN go-wrapper download RUN go-wrapper download
RUN go-wrapper install RUN go-wrapper install

@ -25,9 +25,9 @@ ENV KUBE_VERSION v1.0.5
RUN curl -fsSL -o kubectl https://storage.googleapis.com/kubernetes-release/release/$KUBE_VERSION/bin/linux/amd64/kubectl \ RUN curl -fsSL -o kubectl https://storage.googleapis.com/kubernetes-release/release/$KUBE_VERSION/bin/linux/amd64/kubectl \
&& chmod +x kubectl && chmod +x kubectl
COPY . "$GOPATH"/src COPY . "$GOPATH"/src/github.com/kubernetes/deployment-manager
WORKDIR "$GOPATH"/src/resourcifier WORKDIR "$GOPATH"/src/github.com/kubernetes/deployment-manager/resourcifier
RUN go-wrapper download RUN go-wrapper download
RUN go-wrapper install RUN go-wrapper install

Loading…
Cancel
Save