From 8ad4970231c8da7c47ae5b5dcd9b8b7c8914a9f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BE=84=E6=BD=AD?= Date: Fri, 8 Nov 2024 10:14:02 +0800 Subject: [PATCH] update rust makefile (#1491) --- plugins/wasm-rust/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/wasm-rust/Makefile b/plugins/wasm-rust/Makefile index 66a547adf..2e04b2720 100644 --- a/plugins/wasm-rust/Makefile +++ b/plugins/wasm-rust/Makefile @@ -28,14 +28,12 @@ lint: cargo clippy --workspace --all-features --all-targets --manifest-path extensions/${PLUGIN_NAME}/Cargo.toml builder: - docker buildx build --no-cache \ - --platform linux/amd64,linux/arm64 \ + DOCKER_BUILDKIT=1 docker build \ --build-arg RUST_VERSION=$(RUST_VERSION) \ --build-arg ORAS_VERSION=$(ORAS_VERSION) \ --build-arg HIGRESS_VERSION=$(HIGRESS_VERSION) \ -f DockerfileBuilder \ -t ${BUILDER} \ - --push \ . @echo "" - @echo "image: ${BUILDER}" \ No newline at end of file + @echo "image: ${BUILDER}"