From fb3dd84ac951dccc3f181ee562f270594f567fd5 Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Mon, 20 Jul 2020 09:20:10 +0200 Subject: [PATCH] Define USER to be root Although we start with user root, the image does not define the USER env variable to root, which some Chez tests expect. --- .github/images/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/images/Dockerfile b/.github/images/Dockerfile index 60a6d27792..ce56e8b0ac 100644 --- a/.github/images/Dockerfile +++ b/.github/images/Dockerfile @@ -9,4 +9,5 @@ RUN apt-get update && \ apt-get update && apt-get install -y nodejs && \ apt-get clean +ENV USER=root CMD ["bash"]