2017-11-16 01:20:33 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
CONTAINER_UTILITY_COMMIT=e004a1415a433447369e315b9d7df357102be0d2 # v0.9.0
|
|
|
|
|
|
|
|
(
|
|
|
|
git clone https://github.com/docker/windows-container-utility.git "$GOPATH/src/github.com/docker/windows-container-utility"
|
|
|
|
cd "$GOPATH/src/github.com/docker/windows-container-utility"
|
|
|
|
git checkout -q "$CONTAINER_UTILITY_COMMIT"
|
|
|
|
|
2020-01-07 07:50:06 -05:00
|
|
|
# TODO remove this temporary fix once https://github.com/docker/windows-container-utility/pull/2 is merged
|
|
|
|
sed -i \
|
|
|
|
-e 's|-nostdinc ||g' \
|
|
|
|
-e 's|-I/usr/lib/gcc/x86_64-w64-mingw32/6.3-win32/include ||g' \
|
|
|
|
-e 's|-I/usr/x86_64-w64-mingw32/include ||g' \
|
|
|
|
"$GOPATH/src/github.com/docker/windows-container-utility/Makefile"
|
|
|
|
|
2017-11-16 01:20:33 -05:00
|
|
|
echo Building: ${DEST}/containerutility.exe
|
|
|
|
|
|
|
|
(
|
|
|
|
make
|
|
|
|
)
|
|
|
|
|
|
|
|
mkdir -p ${ABS_DEST}
|
|
|
|
|
|
|
|
cp containerutility.exe ${ABS_DEST}/containerutility.exe
|
|
|
|
)
|