Skip to content

Commit

Permalink
ci/ui: Run buildbot-worker using Python 3
Browse files Browse the repository at this point in the history
Forgot about this worker when upmerging.

See: #3021
  • Loading branch information
gdemonet committed Jan 15, 2021
1 parent b985249 commit 2d69b7f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions eve/workers/pod-integration-tests/ui/worker.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM centos:7

ARG BUILDBOT_VERSION=0.9.12
ARG BUILDBOT_VERSION=2.0.1

ENV LANG=en_US.utf8

Expand All @@ -16,12 +16,13 @@ RUN yum install -y --setopt=skip_missing_names_on_install=False \
libXtst* \
libXScrnSaver* \
nodejs \
python-devel \
python-pip \
python36 \
python36-devel \
python36-pip \
sudo \
xorg-x11-server-Xvfb

RUN pip install buildbot-worker==${BUILDBOT_VERSION}
RUN python3.6 -m pip install buildbot-worker==${BUILDBOT_VERSION}

RUN adduser -u 1042 --home /home/eve eve
RUN echo "eve ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/eve
Expand Down

0 comments on commit 2d69b7f

Please sign in to comment.