summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Pino Garcia <dpino@igalia.com>2021-01-18 16:23:12 +0800
committerPatrick Griffis <pgriffis@igalia.com>2021-01-22 15:01:48 -0600
commitd64effba8503b61ff7e086bc3e18fc9db3a41048 (patch)
tree9a023bd06030167e3a27ef49356ef2d898154f8d
parentd6468972049715d2578e2c485708bde4c79c6416 (diff)
downloadlibsoup-d64effba8503b61ff7e086bc3e18fc9db3a41048.tar.gz
Dockerfile: Add necessary libraries for building autobahntestsuite
-rw-r--r--.gitlab-ci/Dockerfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index 4615bc30..d222d9d7 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -13,6 +13,7 @@ RUN dnf update -y \
make \
meson \
mod_ssl \
+ python2.7.x86_64 \
redhat-rpm-config \
samba-winbind-clients \
which \
@@ -43,6 +44,10 @@ ARG HOST_USER_ID=5555
ENV HOST_USER_ID ${HOST_USER_ID}
RUN useradd -u $HOST_USER_ID -ms /bin/bash user
+RUN python2.7 -m ensurepip
+RUN pip2.7 install virtualenv
+RUN pip2.7 install autobahntestsuite
+
USER user
WORKDIR /home/user