diff --git a/docker/Dockerfile b/docker/Dockerfile index c34f55f..d118e06 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -54,8 +54,8 @@ RUN apt-get -q update \ fi \ && rm -rf /var/lib/apt/lists/* -RUN addgroup --system --gid "$PGID" "$GROUP" \ - && adduser --system --uid "$PUID" --gid "$PGID" --no-create-home --disabled-password --shell /bin/sh "$USER" +RUN groupadd --system --gid "$PGID" "$GROUP" \ + && useradd --system --uid "$PUID" --gid "$PGID" --no-create-home --shell /bin/sh "$USER" # version checksum of the archive to download ARG VERSION