From 50199d5bd5e09089b0c4b91fb01237bff4b7f915 Mon Sep 17 00:00:00 2001 From: David Scott Date: Thu, 2 Aug 2018 15:57:48 +0100 Subject: [PATCH] pkg/vsudd: update the vendoring of linuxkit/virtsock In addition to bug fixes, this removes the special protocol used for `shutdown` needed by old Windows builds < 14393. Signed-off-by: David Scott --- pkg/vsudd/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/vsudd/Dockerfile b/pkg/vsudd/Dockerfile index be283f40f..6738c889d 100644 --- a/pkg/vsudd/Dockerfile +++ b/pkg/vsudd/Dockerfile @@ -2,7 +2,7 @@ FROM linuxkit/alpine:3683c9a66cd4da40bd7d6c7da599b2dcd738b559 AS mirror RUN apk add --no-cache go musl-dev git build-base ENV GOPATH=/go PATH=$PATH:/go/bin -ENV VIRTSOCK_COMMIT=a381dcc5bcddf1d7f449495c373dbf70f8e501c0 +ENV VIRTSOCK_COMMIT=f1e32d3189e0dbb81c0e752a4e214617487eb41f RUN git clone https://github.com/linuxkit/virtsock.git /go/src/github.com/linuxkit/virtsock && \ cd /go/src/github.com/linuxkit/virtsock && \ @@ -10,5 +10,5 @@ RUN git clone https://github.com/linuxkit/virtsock.git /go/src/github.com/linuxk make vsudd FROM scratch -COPY --from=mirror /go/src/github.com/linuxkit/virtsock/build/vsudd.linux /vsudd +COPY --from=mirror /go/src/github.com/linuxkit/virtsock/bin/vsudd.linux /vsudd ENTRYPOINT ["/vsudd"]