Add the organic AST explorer to the CI builds for the homepage.

This commit is contained in:
Tom Alexander
2024-01-27 23:07:01 -05:00
parent 57dd72fb91
commit d7c2a34c8e
4 changed files with 389 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
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"]