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

16 lines
331 B
Docker
Raw Normal View History

2022-08-06 20:32:27 +00:00
FROM rust:alpine
2022-08-06 22:37:31 +00:00
COPY plugin.sh /bin/plugin.sh
2022-08-06 20:32:27 +00:00
RUN apk add --no-cache \
npm \
musl-dev \
2022-08-06 20:41:12 +00:00
openssl \
openssl-dev \
2022-08-06 21:03:19 +00:00
perl \
zlib \
2022-08-06 20:32:27 +00:00
make \
&& cargo install wasm-pack \
2022-08-06 22:25:47 +00:00
&& rustup target add wasm32-unknown-unknown \
2022-08-06 22:11:33 +00:00
&& chmod +x /bin/plugin.sh
2022-08-06 20:32:27 +00:00
2022-08-06 22:11:33 +00:00
ENTRYPOINT /bin/plugin.sh