File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 "features" : {
2525 "ghcr.io/devcontainers/features/sshd:1" : {
2626 "version" : " latest"
27+ },
28+ "ghcr.io/devcontainers/features/github-cli:1" : {
29+ "version" : " latest"
30+ },
31+ "ghcr.io/devcontainers/features/azure-cli:1" : {
32+ "version" : " latest"
2733 }
2834 }
2935}
Original file line number Diff line number Diff line change @@ -8,24 +8,8 @@ sudo chown -R node:node /home/node
88sudo chmod 755 /home/node
99sudo chmod -R 755 /home/node/.config
1010
11- echo " Installing the GitHub CLI"
12- (type -p wget > /dev/null || (sudo apt update && sudo apt-get install wget -y)) \
13- && sudo mkdir -p -m 755 /etc/apt/keyrings \
14- && out=$( mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg \
15- && cat $out | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
16- && sudo chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
17- && echo " deb [arch=$( dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
18- && sudo apt update \
19- && sudo apt install gh inotify-tools -y
20-
21- echo " Installing azcopy"
22-
23- sudo wget -O /usr/local/bin/azcopytar https://aka.ms/downloadazcopy-v10-linux
24- sudo tar -xvf /usr/local/bin/azcopytar -C /usr/local/bin/
25- sudo rm /usr/local/bin/azcopytar
26- azcopy_dir=$( find /usr/local/bin/ -type d -name " azcopy*" | head -n 1)
27- sudo mv " $azcopy_dir /azcopy" /usr/local/bin/azcopy
28- sudo rm -rf " $azcopy_dir "
11+ echo " Installing inotify-tools"
12+ sudo apt update && sudo apt install -y inotify-tools
2913
3014SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
3115" $SCRIPT_DIR /refreshTools.sh"
You can’t perform that action at this time.
0 commit comments