From 1e14916355f19834d2731fd06c6d08fb9aaff15a Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Fri, 23 Sep 2022 02:15:49 +0300 Subject: [PATCH] Update buildbot Dockerfile to focal --- .buildbot/ubuntu/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildbot/ubuntu/Dockerfile b/.buildbot/ubuntu/Dockerfile index c6dd2ec..05af29e 100644 --- a/.buildbot/ubuntu/Dockerfile +++ b/.buildbot/ubuntu/Dockerfile @@ -1,9 +1,9 @@ -FROM ubuntu:bionic AS bionic +FROM ubuntu:focal RUN apt-get update RUN apt-get install -yq --no-install-suggests --no-install-recommends \ - python3-dev python3-pip python3.8 python3.8-dev python3.8-venv + python3-dev python3-pip python3.9 python3.9-dev python3.9-venv -RUN python3.8 -m pip install setuptools wheel -RUN python3.8 -m pip install --upgrade pip tox virtualenv +RUN python3.9 -m pip install setuptools wheel +RUN python3.9 -m pip install --upgrade pip tox virtualenv