Skip to content

Commit

Permalink
update gvisor-tap-vsock (#164)
Browse files Browse the repository at this point in the history
* update gvisor-tap-vsock to bcf84e7

* update to golang 1.18.8

* update gvisor-tap-vsock to 8fa817a
  • Loading branch information
sakai135 authored Nov 17, 2022
1 parent ed4f38c commit 8404e50
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 690 deletions.
4 changes: 2 additions & 2 deletions distro/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.5-alpine3.16 as build
FROM golang:1.18.8-alpine3.16 as build
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
Expand All @@ -8,7 +8,7 @@ RUN GOOS=windows go build -ldflags '-H=windowsgui' -o bin/wsl-gvproxy.exe ./cmd/
GOOS=linux CGO_ENABLED=0 go build -ldflags '-s -w' -o bin/wsl-vm ./cmd/vm && \
find ./bin -type f -exec sha256sum {} \;

FROM golang:1.18.5-alpine3.16 as licenses
FROM golang:1.18.8-alpine3.16 as licenses
RUN apk add --no-cache git && \
apk list --installed && \
go install github.com/google/[email protected]
Expand Down
23 changes: 11 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,29 @@ require (
)

require (
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/Microsoft/go-winio v0.6.0 // indirect
github.com/apparentlymart/go-cidr v1.1.0 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/google/tcpproxy v0.0.0-20200125044825-b6bb9b5b8252 // indirect
github.com/insomniacslk/dhcp v0.0.0-20210812084645-decc701b3665 // indirect
github.com/insomniacslk/dhcp v0.0.0-20220504074936-1ca156eafb9f // indirect
github.com/miekg/dns v1.1.50 // indirect
github.com/u-root/uio v0.0.0-20210528114334-82958018845c // indirect
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.2.0 // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
golang.org/x/tools v0.1.6-0.20210726203631-07bc1bf47fb2 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
golang.org/x/tools v0.1.12 // indirect
inet.af/tcpproxy v0.0.0-20220326234310-be3ee21c9fa0 // indirect
)

require (
github.com/containers/gvisor-tap-vsock v0.4.0
github.com/google/go-cmp v0.5.7
github.com/containers/gvisor-tap-vsock v0.4.1-0.20221117045408-8fa817ade332
github.com/google/go-cmp v0.5.9
github.com/google/gopacket v1.1.19
github.com/sirupsen/logrus v1.9.0
github.com/songgao/packets v0.0.0-20160404182456-549a10cd4091
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
gvisor.dev/gvisor v0.0.0-20220121190119-4f2d380c8b55
golang.org/x/sync v0.1.0
golang.org/x/sys v0.2.0 // indirect
gvisor.dev/gvisor v0.0.0-20220908032458-edc830a43ba6
)
Loading

0 comments on commit 8404e50

Please sign in to comment.