diff --git a/Dockerfile b/Dockerfile index d06683a..355debf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM ubuntu:latest RUN apt-get update && apt-get upgrade -y # add user that will be used to install and run the application -RUN addgroup -g 1000 deploy -RUN adduser -D -u 1000 -G deploy deploy +RUN groupadd -g 1000 deploy +RUN useradd -u 1000 -g deploy deploy # # CUSTOM PART IS BELOW HERE