mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 17:26:47 +00:00
Introduces 0.4.6 of queue-worker - see upstream repo for changes. Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
12 lines
201 B
Bash
Executable File
12 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export eTAG="latest-dev"
|
|
echo $1
|
|
if [ $1 ] ; then
|
|
eTAG=$1
|
|
fi
|
|
|
|
echo Building functions/queue-worker:$eTAG
|
|
|
|
docker build --build-arg http_proxy=$http_proxy -t functions/queue-worker:$eTAG .
|