mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
39 lines
988 B
Bash
Executable File
39 lines
988 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
export dockerfile="Dockerfile"
|
|
export arch=$(uname -m)
|
|
|
|
export eTAG="latest-dev"
|
|
|
|
if [ "$arch" = "armv7l" ] ; then
|
|
dockerfile="Dockerfile.armhf"
|
|
eTAG="latest-armhf-dev"
|
|
elif [ "$arch" = "aarch64" ] ; then
|
|
dockerfile="Dockerfile.arm64"
|
|
eTAG="latest-arm64-dev"
|
|
fi
|
|
|
|
echo "$1"
|
|
if [ "$1" ] ; then
|
|
eTAG=$1
|
|
if [ "$arch" = "armv7l" ] ; then
|
|
eTAG="$1-armhf"
|
|
elif [ "$arch" = "aarch64" ] ; then
|
|
eTAG="$1-arm64"
|
|
fi
|
|
fi
|
|
|
|
NS=openfaas
|
|
|
|
echo Building $NS/gateway:$eTAG
|
|
|
|
GIT_COMMIT_MESSAGE=$(git log -1 --pretty=%B 2>&1 | head -n 1)
|
|
GIT_COMMIT_SHA=$(git rev-list -1 HEAD)
|
|
VERSION=$(git describe --all --exact-match `git rev-parse HEAD` | grep tags | sed 's/tags\///' || echo dev)
|
|
|
|
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
|
|
--build-arg GIT_COMMIT_MESSAGE="$GIT_COMMIT_MESSAGE" --build-arg GIT_COMMIT_SHA=$GIT_COMMIT_SHA \
|
|
--build-arg VERSION=${VERSION:-dev} \
|
|
-t $NS/gateway:$eTAG . -f $dockerfile --no-cache
|