diff --git a/Dockerfile b/Dockerfile index d4b1312..398e5cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,9 @@ VOLUME /config ENV DEBIAN_FRONTEND noninteractive +RUN groupadd -g 100 users +RUN useradd -s /bin/bash -u 99 -g 100 nobody + # Update packages and install software RUN apt-get update \ && apt-get -y install software-properties-common \