From cffdad2358338b70cb0db3eb4e15a3aa8b294251 Mon Sep 17 00:00:00 2001 From: Steve Degosserie <723552+stiiifff@users.noreply.github.com> Date: Wed, 15 Oct 2025 23:54:29 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=94=A7=20Don't=20remove=20/usr/sbi?= =?UTF-8?q?n=20utils=20in=20operator=20Docker=20image=20(#240)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- operator/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/operator/Dockerfile b/operator/Dockerfile index c08a2d01..8eb5783a 100644 --- a/operator/Dockerfile +++ b/operator/Dockerfile @@ -55,8 +55,7 @@ COPY --from=builder \ RUN useradd -m -u 1000 -U -s /bin/sh -d /datahaven datahaven && \ mkdir -p /datahaven/.local/share /data && \ chown -R datahaven:datahaven /data && \ - ln -s /data /datahaven/.local/share/datahaven && \ - rm -rf /usr/sbin + ln -s /data /datahaven/.local/share/datahaven USER datahaven