Centos8 and Arch bbworkers should use the same python requirements file as other workers

This commit is contained in:
Ben Wilson 2020-04-02 08:46:12 -04:00
parent 0bcc6f9aa3
commit 929b764c01
2 changed files with 5 additions and 15 deletions

View File

@ -25,15 +25,10 @@ RUN useradd --home-dir /home/$BUILDBOT_USER \
USER $BUILDBOT_USER
WORKDIR /home/$BUILDBOT_USER
ADD requirements.txt requirements.txt
RUN python -m venv venv \
&& . venv/bin/activate \
&& python -m pip install \
buildbot-worker \
pyflakes \
pyblake2 \
pyzmq \
requests \
twisted[tls]
&& python -m pip install -r requirements.txt
# Buildbot worker
ARG BUILDBOT_WORKER_NAME=arch-docker

View File

@ -24,15 +24,10 @@ RUN useradd --home-dir /home/$BUILDBOT_USER \
USER $BUILDBOT_USER
WORKDIR /home/$BUILDBOT_USER
RUN python3 -m venv venv \
ADD requirements.txt requirements.txt
RUN python -m venv venv \
&& . venv/bin/activate \
&& python3 -m pip install \
buildbot-worker \
pyflakes \
pyblake2 \
pyzmq \
requests \
twisted[tls]
&& python -m pip install -r requirements.txt
# Buildbot worker
ARG BUILDBOT_WORKER_NAME=centos8-docker