Files
runner-images/images/linux/scripts/base/repos.sh
T

17 lines
603 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
################################################################################
## File: repos.sh
## Desc: Installs official Microsoft package repos for the distribution
################################################################################
LSB_RELEASE=$(lsb_release -rs)
# Install Microsoft repository
wget https://packages.microsoft.com/config/ubuntu/$LSB_RELEASE/packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
2020-11-05 15:53:49 +03:00
# update
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
2020-11-05 15:53:49 +03:00
apt-get -yq update
apt-get -yq dist-upgrade