Update buildbot Dockerfile to focal

This commit is contained in:
Lee Miller 2022-09-23 02:15:49 +03:00
parent 30a8a32c92
commit 1e14916355
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
1 changed files with 4 additions and 4 deletions

View File

@ -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