git.delta.rocks / unique-network / refs/commits / 5df49385ed2d

difftreelog

source

.devcontainer/Dockerfile662 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 v12.20.1 && \12    rustup toolchain install nightly-2021-03-01 && \13    rustup default nightly-2021-03-01 && \14    rustup target add wasm32-unknown-unknown