From 2aa8aa7dda57318b43f9b90d137910a0a5333713 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Tue, 17 Sep 2024 10:40:03 +0200 Subject: [PATCH] change to root user to install bash Signed-off-by: Simon L. --- Containers/whiteboard/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containers/whiteboard/Dockerfile b/Containers/whiteboard/Dockerfile index ceec39d7..db6a7ef6 100644 --- a/Containers/whiteboard/Dockerfile +++ b/Containers/whiteboard/Dockerfile @@ -1,9 +1,11 @@ # syntax=docker/dockerfile:latest FROM ghcr.io/nextcloud-releases/whiteboard:v1.0.1 +USER root RUN set -ex; \ apk upgrade --no-cache -a; \ apk add --no-cache bash +USER nobody COPY --chmod=775 start.sh /start.sh