git.delta.rocks / unique-network / refs/commits / e3aef6f9aee5

difftreelog

source

.devcontainer/Dockerfile783 Bsourcehistory
1FROM mcr.microsoft.com/vscode/devcontainers/rust:0-123RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && \4    apt-get -y install --no-install-recommends libssl-dev pkg-config libclang-dev clang56USER vscode78RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash && \9    export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" && \10    [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \11    nvm install v16.2.0 && \12    npm install -g yarn && \13    rustup toolchain install nightly-2021-05-30 && \14    rustup default nightly-2021-05-30 && \15    rustup target add wasm32-unknown-unknown && \16    rustup component add rustfmt clippy && \17    cargo install cargo-expand cargo-edit