FROM rust:1.64.0
WORKDIR /app
RUN cargo install wasm-pack
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bashRUN apt-get install -y nodejsRUN npm config set cache /tmp --global
RUN chmod -R 777 /usr/local/cargoRUN chmod -R 777 /root
CMD npm ci && npm run build