moby: build docker-proxy in addition to dockerd

docker-proxy is now included in moby since:
e7cf711c02
This commit is contained in:
Rudi Heitbaum 2022-08-27 05:40:16 +00:00
parent ad3f728aef
commit 72b1aa6656

View File

@ -45,6 +45,7 @@ EOF
make_target() {
mkdir -p bin
${GOLANG} build -mod=mod -modfile=vendor.mod -v -o bin/docker-proxy -a -ldflags "${LDFLAGS}" ./cmd/docker-proxy
${GOLANG} build -mod=mod -modfile=vendor.mod -v -o bin/dockerd -a -tags "${PKG_MOBY_BUILDTAGS}" -ldflags "${LDFLAGS}" ./cmd/dockerd
}