faas/watchdog/build.sh
John McCabe 89878f0c8a Migrate from alexellis org to openfaas
Note, not all `alexellis/github` references should be changed, there are
a number of repos which are not part of the openfaas org, this commit
excludes those.

Signed-off-by: John McCabe <john@johnmccabe.net>
2017-10-04 09:18:06 +01:00

26 lines
821 B
Bash
Executable File

#!/bin/sh
export arch=$(uname -m)
if [ "$arch" = "armv7l" ] ; then
echo "Build not supported on $arch, use cross-build."
exit 1
fi
if [ ! $http_proxy == "" ]
then
docker build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy -t functions/watchdog:build .
else
docker build -t functions/watchdog:build .
fi
docker create --name buildoutput functions/watchdog:build echo
docker cp buildoutput:/go/src/github.com/openfaas/faas/watchdog/watchdog ./fwatchdog
docker cp buildoutput:/go/src/github.com/openfaas/faas/watchdog/watchdog-armhf ./fwatchdog-armhf
docker cp buildoutput:/go/src/github.com/openfaas/faas/watchdog/watchdog-arm64 ./fwatchdog-arm64
docker cp buildoutput:/go/src/github.com/openfaas/faas/watchdog/watchdog.exe ./fwatchdog.exe
docker rm buildoutput