File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM ubuntu:latest
2+
3+ WORKDIR /home/
4+
5+ COPY . .
6+
7+ RUN bash ./setup.sh
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " basm-rs" ,
3+ "extensions" : [
4+ " ms-vsliveshare.vsliveshare" ,
5+ " rust-lang.rust-analyzer" ,
6+ " vadimcn.vscode-lldb"
7+ ],
8+ "dockerFile" : " Dockerfile" ,
9+ "settings" : {
10+ "editor.formatOnSave" : true
11+ },
12+ "customizations" : {
13+ "codespaces" : {
14+ "openFiles" : [
15+ " src/solution.rs"
16+ ]
17+ }
18+ }
19+ }
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ apt-get -y update
3+ apt-get -y install curl git gnupg2 jq sudo vim build-essential openssl python3
4+ curl --proto ' =https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain nightly --default-host x86_64-unknown-linux-gnu -y
5+ sudo ln -s /home/codespace/.cargo/bin/cargo /bin/cargo
You can’t perform that action at this time.
0 commit comments