From 18247867133a517e28b5b0cdb2be970c6e092c00 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Wed, 02 Jun 2021 17:36:04 +0000 Subject: [PATCH] build(devcontainer): bump dependencies Update rustc due to unstable fingerprints Update node.js because new polkadot.js/api now requires node 1.14 --- --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,7 +8,10 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash && \ export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" && \ [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \ - nvm install v12.20.1 && \ - rustup toolchain install nightly-2021-03-01 && \ - rustup default nightly-2021-03-01 && \ - rustup target add wasm32-unknown-unknown \ No newline at end of file + nvm install v16.2.0 && \ + npm install -g yarn && \ + rustup toolchain install nightly-2021-05-30 && \ + rustup default nightly-2021-05-30 && \ + rustup target add wasm32-unknown-unknown && \ + rustup component add rustfmt clippy && \ + cargo install cargo-expand cargo-edit -- gitstuff