mirror of
https://github.com/alibaba/higress.git
synced 2026-02-25 05:01:19 +08:00
12 lines
329 B
Makefile
12 lines
329 B
Makefile
GO_FILTER_NAME ?= golang-filter
|
|
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 . \
|
|
.
|