mirror of
https://github.com/openfaas/faas.git
synced 2025-06-16 12:16:47 +00:00
This moves watchdog to a better name for images and also gives free image-scanning and gives more confidence to users that components ship regularly and makes any vulnerabilities in components clear Signed-off-by: Ivana Yovcheva (VMware) <iyovcheva@vmware.com>
32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
export arch=$(uname -m)
|
|
|
|
if [ "$arch" = "armv7l" ] ; then
|
|
echo "Build not supported on $arch, use cross-build."
|
|
exit 1
|
|
fi
|
|
|
|
cd ..
|
|
GIT_COMMIT=$(git rev-list -1 HEAD)
|
|
VERSION=$(git describe --all --exact-match `git rev-parse HEAD` | grep tags | sed 's/tags\///')
|
|
cd watchdog
|
|
|
|
if [ ! $http_proxy == "" ]
|
|
then
|
|
docker build --no-cache --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
|
|
--build-arg GIT_COMMIT=$GIT_COMMIT --build-arg VERSION=$VERSION -t openfaas/watchdog:build .
|
|
else
|
|
docker build --no-cache --build-arg VERSION=$VERSION --build-arg GIT_COMMIT=$GIT_COMMIT -t openfaas/watchdog:build .
|
|
fi
|
|
|
|
docker create --name buildoutput openfaas/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
|
|
|