Files
runner-images/images/ubuntu/scripts/build/install-ms-repos.sh
T

17 lines
596 B
Bash
Raw Normal View History

2020-10-24 23:30:27 +07:00
#!/bin/bash -e
2019-11-15 15:23:41 -05:00
################################################################################
2023-11-22 21:49:23 +01:00
## File: install-ms-repos.sh
## Desc: Install official Microsoft package repos for the distribution
2019-11-15 15:23:41 -05:00
################################################################################
2023-12-29 12:36:27 +01:00
os_label=$(lsb_release -rs)
2019-11-15 15:23:41 -05:00
# Install Microsoft repository
2023-12-29 12:36:27 +01:00
wget https://packages.microsoft.com/config/ubuntu/$os_label/packages-microsoft-prod.deb
2019-11-15 15:23:41 -05:00
dpkg -i packages-microsoft-prod.deb
2020-11-05 15:53:49 +03:00
# update
2024-05-29 13:43:07 +02:00
apt-get install apt-transport-https ca-certificates curl software-properties-common
apt-get update
apt-get dist-upgrade