diff --git a/Dockerfile b/Dockerfile index 33c46309ba..213caebc9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN apt-get update -qq && apt-get install -qq -y --no-install-recommends \ ARG UID=1000 GID=1000 -RUN groupadd --gid $UID dev && \ +RUN groupadd --gid $GID dev && \ useradd --uid $UID --gid dev --shell /bin/bash --create-home dev USER dev:dev