From 7473270151c001d459b1ffee220cbd1fb4d33179 Mon Sep 17 00:00:00 2001 From: SunnyBerlin <127693048+SunnyBerlin@users.noreply.github.com> Date: Mon, 10 Apr 2023 13:50:15 +0200 Subject: [PATCH] (#190): Adjust dockerfile and add ffmpeg to docker image for video recording (#191) * (#184): Add ability to run tests in seperate virtual screens * (#184): Add ability to run tests in seperate virtual screens * (#184): Add ability to run tests in seperate virtual screens * issue-190: Add ffmpeg to docker image * Edit base image --- etc/bsys/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/bsys/Dockerfile b/etc/bsys/Dockerfile index 06f82f26..e8ff8ad1 100644 --- a/etc/bsys/Dockerfile +++ b/etc/bsys/Dockerfile @@ -1,2 +1,2 @@ -FROM ubuntu:18.04 -RUN apt-get upgrade && apt-get update && apt-get install -y git less wget cmake xvfb build-essential qt5-default python3 python3-pip curl; pip3 install requests +FROM ubuntu:22.04 +RUN apt-get upgrade && apt-get update && apt-get install -y git less wget cmake xvfb build-essential qtbase5-dev qtbase5-dev-tools ffmpeg python3 python3-pip curl; pip3 install requests