diff --git a/apps/Dockerfile b/apps/Dockerfile index c1f4e9c..bd6709c 100644 --- a/apps/Dockerfile +++ b/apps/Dockerfile @@ -27,8 +27,10 @@ RUN apt update -qq \ ## ## User blackbar ## -RUN useradd -ms /bin/bash blackbar +RUN groupadd --gid 1000 shiny +RUN useradd -c 'shiny' --uid 1000 --gid 1000 --create-home --home-dir /home/blackbar --shell /bin/bash blackbar USER blackbar WORKDIR /home/blackbar +EXPOSE 3838 CMD bash