Fix buildbot worker for older ubuntu

This commit is contained in:
Peter Šurda 2024-03-04 07:09:22 +08:00
parent cd431f1891
commit d42e359732
Signed by: PeterSurda
GPG Key ID: 3E47497CF67ABB95
1 changed files with 6 additions and 5 deletions

View File

@ -40,9 +40,9 @@ dockerfile_extra_contents['bionic'] = """
# Buildbot
RUN apt-get update -y && apt-get install -yq --no-install-suggests --no-install-recommends \
git subversion python3-dev libffi-dev python3-setuptools \
python3-pip dumb-init curl openssh-client wget
RUN pip3 install 'buildbot-worker==2.6.0'
python3-pip dumb-init curl openssh-client wget python3-wheel \
pkg-config
RUN pip3 install buildbot-worker pyOpenSSL setuptools_rust
RUN groupadd buildbot
RUN useradd -d /var/lib/buildbot -m -g buildbot buildbot
@ -87,9 +87,10 @@ dockerfile_extra_contents['xenial'] = """
RUN apt-get update -y && apt-get install -yq --no-install-suggests --no-install-recommends \
git subversion python3-dev libffi-dev python3-setuptools \
python3-pip curl openssh-client wget \
python-setuptools python-psutil libssl-dev python-dev libgmp-dev python-virtualenv
python-setuptools python-psutil libssl-dev python-dev libgmp-dev \
python-virtualenv python3-wheel pkg-config
RUN pip3 install 'buildbot-worker==2.6.0'
RUN pip3 install buildbot-worker pyOpenSSL setuptools_rust
RUN groupadd buildbot
RUN useradd -d /var/lib/buildbot -m -g buildbot buildbot