Skip to main content
Module

x/ed25519_dalek/Dockerfile

WebAssembly port of Dalek's Ed25519 and X25519, Rust implementations of Ed25519 signatures and X25519 key exchange
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