updated apt state

This commit is contained in:
Paul 2023-08-26 09:49:31 +02:00
parent 78192fa3f2
commit 1f8fdeb8bb

View File

@ -0,0 +1,4 @@
for arch in amd64 arm64
do
docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp -e GO111MODULE=auto -e GOOS=linux -e GOARCH=${arch} golang:buster sh -c "go get github.com/pion/mdns && go get golang.org/x/net/ipv4 && go build -o apt_${arch} apt.go"
done