mirror of
https://github.com/alibaba/higress.git
synced 2026-02-06 23:21:08 +08:00
16 lines
458 B
Docker
16 lines
458 B
Docker
FROM rust:1.80 as builder
|
|
WORKDIR /workspace
|
|
RUN rustup target add wasm32-wasip1
|
|
ARG PLUGIN_NAME="say-hello"
|
|
ARG BUILD_OPTS="--release"
|
|
ARG PREBUILD=".prebuild"
|
|
COPY . .
|
|
WORKDIR /workspace/extensions/$PLUGIN_NAME
|
|
RUN if [ -f $PREBUILD ]; then sh $PREBUILD; fi
|
|
RUN cargo build --target wasm32-wasip1 $BUILD_OPTS \
|
|
&& cp target/wasm32-wasip1/release/*.wasm /main.wasm \
|
|
&& cargo clean
|
|
|
|
FROM scratch AS output
|
|
COPY --from=builder /main.wasm plugin.wasm
|