From bc475491776bca2569bdfbab012297c4ad7c4abb Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Mon, 23 Aug 2021 14:39:11 +0200 Subject: [PATCH] trying to get rid of segfault, changing to ubuntu --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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