From 75e78f9ffaf7f88916d76eef5c7e31b516c788b8 Mon Sep 17 00:00:00 2001 From: Marvin Pinto Date: Tue, 27 Feb 2024 15:39:43 -0500 Subject: [PATCH] fixup! Fix the Github build issue related to homebrew root detection --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e000daa..761eca5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -108,6 +108,9 @@ RUN apt-get -qq update \ RUN curl -L "https://github.com/marvinpinto/slc/releases/download/latest/slc_linux_amd64" -o /usr/local/bin/slc \ && chmod +x /usr/local/bin/slc +# Manually add a /.dockerenv file (to work around buildx not providing it) +RUN touch /.dockerenv + # Environment setup RUN mkdir -p /home/worker/app \ && touch /home/worker/app/.placeholder \