Skip to main content
Module

x/foras/Dockerfile

WebAssembly port of Rust's flate2, a Rust implementation of Deflate, Gzip, and Zlib compressions
Go to Latest
File
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