From b0ff4d33e7de6dea2538f6d1452d0cce126a854e Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 16 Feb 2022 20:34:51 +0000 Subject: [PATCH] fix: remove `sculpin` user This is now added by default in the `opdavies/sculpin-serve` image. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index bb356434..22710a41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,9 +45,8 @@ FROM opdavies/sculpin-serve AS app WORKDIR /app -RUN adduser --disabled-password sculpin \ - && mkdir /output \ - && chown sculpin:sculpin -R /app /output +RUN mkdir /output \ + && chown sculpin:sculpin -R /output ###