File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 " vscode-icons-team.vscode-icons" ,
1010 " visualstudioexptteam.vscodeintellicode"
1111 ],
12- "dockerFile" : " Dockerfile"
12+ "dockerFile" : " Dockerfile" ,
13+ "settings" : {
14+ "terminal.integrated.shell.linux" : " /usr/bin/zsh"
15+ }
1316}
Original file line number Diff line number Diff line change 1+ # # update and install some things we should probably have
12apt-get update
23apt-get install -y \
34 curl \
45 git \
6+ gnupg2 \
57 jq \
8+ sudo \
69 zsh
710
11+ # # set-up and install yarn
812curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
913echo " deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
1014apt-get install yarn -y --no-install-recommends
1115
12- useradd -m developer
13- su developer
16+ # # instsall nvm
17+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
1418
19+ # # setup and install oh-my-zsh
1520sh -c " $( curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh) "
1621cp -R /root/.oh-my-zsh /home/$USERNAME
1722cp /root/.zshrc /home/$USERNAME
1823sed -i -e " s/\/root\/.oh-my-zsh/\/home\/$USERNAME \/.oh-my-zsh/g" /home/$USERNAME /.zshrc
1924chown -R $USER_UID :$USER_GID /home/$USERNAME /.oh-my-zsh /home/$USERNAME /.zshrc
20-
21- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
You can’t perform that action at this time.
0 commit comments