Dockerfile: don't call go get

Everything must be in vendor/

Signed-off-by: Andrey Vagin <avagin@openvz.org>
This commit is contained in:
Andrey Vagin 2015-04-06 10:25:16 +03:00 committed by Michael Crosby
parent 5df3a07b5f
commit 5231fbf143
2 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,6 @@ COPY . /go/src/github.com/docker/libcontainer
WORKDIR /go/src/github.com/docker/libcontainer
RUN cp sample_configs/minimal.json /busybox/container.json
RUN go get -d -v ./...
RUN make direct-install
ENTRYPOINT ["/dind"]

View File

@ -4,7 +4,7 @@
package criurpc
import proto "code.google.com/p/goprotobuf/proto"
import proto "github.com/golang/protobuf/proto"
import json "encoding/json"
import math "math"