homepage/docker/organic/Dockerfile

8 lines
183 B
Docker
Raw Normal View History

2024-04-24 01:02:58 +00:00
FROM rustlang/rust:nightly-alpine3.19
RUN apk add --no-cache musl-dev make bash
RUN rustup target add wasm32-unknown-unknown
RUN cargo install wasm-bindgen-cli
CMD ["make", "wasm"]