Browse Source

ci: update Dockerfile used to run web tests (#4682)

update to the latest LTS and add Xvfb to run browser in non-headless
mode
pull/4695/head
Victor Kropp 2 weeks ago committed by GitHub
parent
commit
6bb4d392a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      ci/docker/compose-web/Dockerfile-Basic

5
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"

Loading…
Cancel
Save