mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 17:26:47 +00:00
25 lines
476 B
Bash
Executable File
25 lines
476 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export dockerfile="Dockerfile"
|
|
export arch=$(uname -m)
|
|
|
|
export eTAG="latest-dev"
|
|
|
|
if [ "$arch" = "armv7l" ] ; then
|
|
dockerfile="Dockerfile.armhf"
|
|
eTAG="latest-armhf-dev"
|
|
fi
|
|
|
|
echo "$1"
|
|
if [ "$1" ] ; then
|
|
eTAG=$1
|
|
if [ "$arch" = "armv7l" ] ; then
|
|
eTAG="$1-armhf"
|
|
fi
|
|
fi
|
|
|
|
echo Building functions/gateway:$eTAG
|
|
|
|
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
|
|
-t functions/gateway:$eTAG . -f $dockerfile --no-cache
|