diff options
author | crupest <crupest@outlook.com> | 2022-12-20 20:03:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-20 20:03:33 +0800 |
commit | ac2e9aa1bb4c6ee043c52202957ab4ffb76759f2 (patch) | |
tree | d1e1e577dbc60eb3e3d8bdecb47f670caff97ed6 /docker | |
parent | e51caaf3734fe01df1457ef6721a7eaacdb328cb (diff) | |
download | crupest-ac2e9aa1bb4c6ee043c52202957ab4ffb76759f2.tar.gz crupest-ac2e9aa1bb4c6ee043c52202957ab4ffb76759f2.tar.bz2 crupest-ac2e9aa1bb4c6ee043c52202957ab4ffb76759f2.zip |
Fix code-server. v2
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/code-server/install-dev-tools.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/code-server/install-dev-tools.bash b/docker/code-server/install-dev-tools.bash index 1312663..60b3c2e 100755 --- a/docker/code-server/install-dev-tools.bash +++ b/docker/code-server/install-dev-tools.bash @@ -3,7 +3,7 @@ set -e apt-get update -apt-get install vim wget git +apt-get install -y vim wget git git config --global user.email "$GIT_EMAIL" git config --global user.name "$GIT_NAME" @@ -12,6 +12,6 @@ wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb dpkg -i packages-microsoft-prod.deb rm packages-microsoft-prod.deb -apt-get install dotnet-sdk-7.0 +apt-get install -y dotnet-sdk-7.0 rm -rf /var/lib/apt/lists/* |