mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
This commits updates version endpoint to use ProviderInfo and VersionInfo structs from faas-provider.GatewayInfo now uses ProviderInfo and VersionInfo structs. GatewayInfo is left within gateway. Consumer of this endpoint should use typed struct GatewayInfo to parse response. Signed-off-by: Vivek Singh <vivekkmr45@yahoo.in>
11 lines
201 B
Makefile
11 lines
201 B
Makefile
TAG?=latest
|
|
NS?=openfaas
|
|
|
|
.PHONY: build-gateway
|
|
build-gateway:
|
|
(cd gateway; docker buildx build --platform linux/amd64 -t ${NS}/gateway:latest-dev .)
|
|
|
|
# .PHONY: test-ci
|
|
# test-ci:
|
|
# ./contrib/ci.sh
|