faas/gateway/build.sh
Alex Ellis cfcb183bc7 Name builder steps
Signed-off-by: Alex Ellis <alexellis2@gmail.com>
2017-08-29 19:40:08 +01:00

15 lines
251 B
Bash
Executable File

#!/bin/sh
export eTAG="latest-dev"
echo $1
if [ $1 ] ; then
echo "set this"
eTAG=$1
fi
echo Building functions/gateway:$eTAG
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
-t functions/gateway:$eTAG .