mirror of
https://github.com/openfaas/faas.git
synced 2025-06-24 15:53:26 +00:00
12 lines
223 B
Makefile
12 lines
223 B
Makefile
.PHONY: all
|
|
all: ci-arm64-build ci-arm64-push
|
|
|
|
.PHONY: ci-arm64-build
|
|
ci-arm64-build:
|
|
docker build -t functions/prometheus:2.7.1-arm64 .
|
|
|
|
.PHONY: ci-arm64-push
|
|
ci-arm64-push:
|
|
docker push functions/prometheus:2.7.1-arm64
|
|
|