From bd72b02c5a5dd2d9bc87d30280cbb2da9bb531b5 Mon Sep 17 00:00:00 2001 From: George Adrian Stoica <stoica@ntnu.no> Date: Mon, 22 Aug 2022 14:09:00 +0200 Subject: [PATCH] fix: add matchbox package to the docker image without matchbox package the UI tests do not run as expected --- .gitpod.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 0d52ba6..c8a6356 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -5,6 +5,8 @@ USER root RUN add-apt-repository universe RUN apt update RUN apt -y install graphviz +RUN sudo apt-get update && sudo apt-get install -y matchbox && sudo apt-get clean && sudo rm -rf /var/cache/apt/* && sudo rm -rf /var/lib/apt/lists/* && sudo rm -rf /tmp/* + USER gitpod -- GitLab