From 4c27d651b6637c2164eba6013a1259a3e2941f75 Mon Sep 17 00:00:00 2001 From: George Adrian Stoica <stoica@ntnu.no> Date: Tue, 16 Aug 2022 15:55:30 +0200 Subject: [PATCH] update gitpod configuration add sudo to matchbox command --- .gitpod.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index a88597f..8165137 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -2,7 +2,7 @@ FROM gitpod/workspace-full-vnc USER root -RUN apt-get update && apt-get install -y matchbox && apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* +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