From 54565a056f7b0f6aea58bf097af95e2ee881357e Mon Sep 17 00:00:00 2001 From: Anton Yaroshenko Date: Sat, 23 Jan 2021 20:08:22 +0200 Subject: [PATCH] Set base image to ubuntu 18.04 --- .taskcluster.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.taskcluster.yml b/.taskcluster.yml index 757f8f0c..2f33217e 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -53,7 +53,7 @@ tasks: payload: maxRunTime: 600 - image: "ubuntu:16.04" + image: "ubuntu:18.04" features: taskclusterProxy: true @@ -74,7 +74,7 @@ tasks: - "--login" - "-cxe" - > - echo "deb http://archive.ubuntu.com/ubuntu/ xenial-updates main" > /etc/apt/sources.list.d/xenial-updates.list && + echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates main" > /etc/apt/sources.list.d/bionic-updates.list && apt-get -qq update && apt-get -qq -y install git python3-pip curl sudo && adduser --system --home /home/build-user build-user && cd /home/build-user/ &&