homepage/docker/organic/Dockerfile

8 lines
183 B
Docker
Raw Normal View History

FROM rustlang/rust:nightly-alpine3.17
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"]