From 0c4ed03f09d9b716a64b9c50ba6d4c3faa8aa272 Mon Sep 17 00:00:00 2001 From: Laica Lunasys Date: Sun, 28 Jul 2024 11:09:27 +0900 Subject: [PATCH] Fix group creation --- velocity/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/velocity/Dockerfile b/velocity/Dockerfile index 4627e01..ab3e761 100644 --- a/velocity/Dockerfile +++ b/velocity/Dockerfile @@ -43,7 +43,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...