From 5fe3eeea2cd4a74c38570aae7255ef5edbe1097a Mon Sep 17 00:00:00 2001
From: George Adrian Stoica <stoica@ntnu.no>
Date: Mon, 22 Aug 2022 14:06:48 +0200
Subject: [PATCH] fix: add matchbox package to the docker image

without matchbox package the UI testing is not working as expected
---
 .gitpod.Dockerfile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile
index 22ece18..8165137 100644
--- a/.gitpod.Dockerfile
+++ b/.gitpod.Dockerfile
@@ -1,5 +1,9 @@
 FROM gitpod/workspace-full-vnc
 
+USER root
+
+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
 
 RUN bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh \
-- 
GitLab