github.com/afbjorklund/moby@v20.10.5+incompatible/hack/make/containerutility (about) 1 #!/usr/bin/env bash 2 set -e 3 4 : "${CONTAINER_UTILITY_COMMIT:=aa1ba87e99b68e0113bd27ec26c60b88f9d4ccd9}" 5 6 ( 7 git clone https://github.com/docker/windows-container-utility.git "$GOPATH/src/github.com/docker/windows-container-utility" 8 cd "$GOPATH/src/github.com/docker/windows-container-utility" 9 git checkout -q "$CONTAINER_UTILITY_COMMIT" 10 11 echo Building: ${DEST}/containerutility.exe 12 13 ( 14 make 15 ) 16 17 mkdir -p ${ABS_DEST} 18 19 cp containerutility.exe ${ABS_DEST}/containerutility.exe 20 )