diff options
author | crupest <crupest@outlook.com> | 2023-02-05 00:02:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-02-05 00:19:20 +0800 |
commit | 068652372baa4cdc4687fc0c08d38f9d77e1b348 (patch) | |
tree | 2cd35641390772b78c6cb437aff2bf192ebe3d1d /docker/code-server/install-dotnet.bash | |
parent | 9605c91b63a9f837f352145ce67f901fe5387428 (diff) | |
download | crupest-068652372baa4cdc4687fc0c08d38f9d77e1b348.tar.gz crupest-068652372baa4cdc4687fc0c08d38f9d77e1b348.tar.bz2 crupest-068652372baa4cdc4687fc0c08d38f9d77e1b348.zip |
Update code-server.
Diffstat (limited to 'docker/code-server/install-dotnet.bash')
-rw-r--r-- | docker/code-server/install-dotnet.bash | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/code-server/install-dotnet.bash b/docker/code-server/install-dotnet.bash new file mode 100644 index 0000000..5e437ff --- /dev/null +++ b/docker/code-server/install-dotnet.bash @@ -0,0 +1,6 @@ +wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb +dpkg -i packages-microsoft-prod.deb +rm packages-microsoft-prod.deb + +apt-get update +apt-get install -y dotnet-sdk-7.0 |