FROM rust:1.85-alpine3.20 RUN apk update && \ apk add --no-cache bash binaryen gcc git g++ libc-dev make npm openssl-dev openssl-libs-static zlib-static zlib-dev protobuf-dev protoc perl RUN rustup target add wasm32-unknown-unknown RUN rustup component add clippy RUN cargo install cargo-generate RUN cargo install cargo-leptos WORKDIR /build CMD /bin/bash