KoalaSat 424a297c30 Add docker generate builds wasm & android native (#17)
* Generate Builds

* Generate Android builds

* Last commit
2024-04-29 23:29:36 +00:00

23 lines
518 B
Docker

FROM debian:testing-slim
# install common packages
RUN apt-get update && \
apt-get install --no-install-recommends -y \
ca-certificates curl file \
build-essential \
autoconf automake autotools-dev libtool xutils-dev && \
rm -rf /var/lib/apt/lists/*
# install Rust toolchain
RUN curl https://sh.rustup.rs -sSf | \
sh -s -- --default-toolchain nightly -y
ENV PATH="/root/.cargo/bin:${PATH}"
# install depdendencies
RUN cargo install wasm-pack
COPY . /app
WORKDIR /app/robo-identities-wasm