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 clang56RUN curl -L -o- https://github.com/WebAssembly/binaryen/releases/download/version_101/binaryen-version_101-x86_64-linux.tar.gz | \7 tar xz --strip-components=1 -C /usr89USER vscode1011RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash && \12 export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" && \13 [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \14 nvm install v16.2.0 && \15 npm install -g yarn && \16 rustup toolchain install nightly-2023-05-22 && \17 rustup default nightly-2023-05-22 && \18 rustup target add wasm32-unknown-unknown && \19 rustup component add rustfmt clippy && \20 cargo install cargo-expand cargo-edit cargo-contract