mirror of
https://github.com/openfaas/faas.git
synced 2025-06-26 16:53:26 +00:00
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export eTAG="latest-dev"
|
|
echo "$1"
|
|
if [ "$1" ] ; then
|
|
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 .
|
|
|