More devcontainer tweaks

This commit is contained in:
David Carley
2022-09-08 02:28:19 +00:00
parent 1079256789
commit 99750f53a0
2 changed files with 27 additions and 26 deletions

View File

@@ -30,6 +30,7 @@
"ms-vscode.makefile-tools", "ms-vscode.makefile-tools",
"ms-python.python", "ms-python.python",
"svelte.svelte-vscode", "svelte.svelte-vscode",
"redhat.vscode-yaml" "redhat.vscode-yaml",
"ryu1kn.partial-diff"
] ]
} }

View File

@@ -1,30 +1,30 @@
#!/usr/bin/env -S bash -e #!/usr/bin/env -S bash -e
APT_PACKAGES=( APT_PACKAGES=(
"build-essential" "build-essential"
"git" "git"
"wget" "wget"
"binfmt-support" "binfmt-support"
"qemu" "qemu"
"gcc-9" "gcc-9"
"parted" "parted"
"udev" "udev"
"zerofree" "zerofree"
"gcc-avr" "gcc-avr"
"avr-libc" "avr-libc"
"avrdude" "avrdude"
"python3" "python3"
"python3-pip" "python3-pip"
"python3-tornado" "python3-tornado"
"inetutils-ping" "inetutils-ping"
"curl" "curl"
"unzip" "unzip"
"python3-setuptools" "python3-setuptools"
"gcc-arm-linux-gnueabihf" "gcc-arm-linux-gnueabihf"
"bc" "bc"
"vim" "vim"
"locate" "locate"
"sudo" "sudo"
) )
apt-get update apt-get update
@@ -42,5 +42,5 @@ apt-get install -y nodejs
mkdir -p /root/.ssh mkdir -p /root/.ssh
cat > /root/.ssh/config <<- END cat > /root/.ssh/config <<- END
Host onefinity Host onefinity
User bbmc User bbmc
END END