game-algorithms/tools/wasm-pack-plugin/Dockerfile

12 lines
225 B
Docker
Raw Normal View History

2022-08-06 20:32:27 +00:00
FROM rust:alpine
RUN apk add --no-cache \
npm \
musl-dev \
make \
&& cargo install wasm-pack \
&& rustup target add wasm32-unknown-unknown
COPY plugin.sh /plugin.sh
ENTRYPOINT ["/plugin.sh"]