From 6bb4d392a18f7908564796f9a130af0426464f48 Mon Sep 17 00:00:00 2001 From: Victor Kropp Date: Tue, 23 Apr 2024 16:38:39 +0200 Subject: [PATCH] ci: update Dockerfile used to run web tests (#4682) update to the latest LTS and add Xvfb to run browser in non-headless mode --- ci/docker/compose-web/Dockerfile-Basic | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/docker/compose-web/Dockerfile-Basic b/ci/docker/compose-web/Dockerfile-Basic index 17a6aef623..8d3b338f56 100644 --- a/ci/docker/compose-web/Dockerfile-Basic +++ b/ci/docker/compose-web/Dockerfile-Basic @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:22.04 SHELL ["/bin/bash", "-c"] @@ -11,7 +11,8 @@ RUN dpkg --add-architecture i386 && apt-get update -yqq && apt-get install -y \ python3 \ python-is-python3 \ unzip \ - wget + wget \ + xvfb ARG CHROME_VERSION="google-chrome-stable"