From 92a83a245b6f5333e6038ac2afe69b2de82b0943 Mon Sep 17 00:00:00 2001 From: Laica Lunasys Date: Sun, 28 Jul 2024 11:08:49 +0900 Subject: [PATCH] Fix group creation --- plain/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plain/Dockerfile b/plain/Dockerfile index 3c97b18..a93ae4f 100644 --- a/plain/Dockerfile +++ b/plain/Dockerfile @@ -50,7 +50,7 @@ RUN apt-get update -qq && \ # Copy Entry point COPY entrypoint.sh launcher.sh autoconfig.sh / -RUN addgroup --gid 1000 app && \ +RUN groupadd --gid 1000 app && \ useradd app --uid 1000 -g app -s /bin/bash # Copy basements...