Dockerfile: don't call go get
Everything must be in vendor/ Signed-off-by: Andrey Vagin <avagin@openvz.org>
This commit is contained in:
parent
5df3a07b5f
commit
5231fbf143
|
@ -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"]
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue