From 8ae492a9f1d21f949a9d717046eeca4fff43d0f4 Mon Sep 17 00:00:00 2001 From: Radical Date: Mon, 5 May 2025 13:22:39 +0200 Subject: [PATCH] ci: use adduser command instead of useradd I'm used to GNU distros and not busybox so i did a little whoopsie --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd05b2c..9e8d943 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ COPY ./.output /web COPY entrypoint.sh /usr/bin/entrypoint.sh -RUN useradd --create-home --home-dir /web gorb +RUN busybox adduser -D -h /web gorb USER gorb