mirror of
https://github.com/alibaba/higress.git
synced 2026-02-27 06:00:51 +08:00
12 lines
344 B
Makefile
12 lines
344 B
Makefile
GO_FILTER_NAME ?= mcp-server
|
|
GOPROXY := $(shell go env GOPROXY)
|
|
GOARCH ?= amd64
|
|
|
|
.DEFAULT:
|
|
build:
|
|
DOCKER_BUILDKIT=1 docker build --build-arg GOPROXY=$(GOPROXY) \
|
|
--build-arg GO_FILTER_NAME=${GO_FILTER_NAME} \
|
|
--build-arg GOARCH=${GOARCH} \
|
|
-t ${GO_FILTER_NAME} \
|
|
--output ./${GO_FILTER_NAME} \
|
|
.
|