mirror of
https://github.com/openfaas/faas.git
synced 2025-06-16 04:06:47 +00:00
Introduces 0.4.6 of queue-worker - see upstream repo for changes. Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
10 lines
211 B
Makefile
10 lines
211 B
Makefile
TAG?=latest
|
|
|
|
build:
|
|
docker build --build-arg http_proxy="${http_proxy}" --build-arg https_proxy="${https_proxy}" -t functions/queue-worker:$(TAG) .
|
|
|
|
push:
|
|
docker push functions/queue-worker:$(TAG)
|
|
|
|
all: build
|