From 55bc84d3f2b51eac5c8a178233b2f238bd171c1a Mon Sep 17 00:00:00 2001 From: Zoey Date: Wed, 3 May 2023 17:10:47 +0200 Subject: [PATCH] add set -ex Co-authored-by: Simon L. Signed-off-by: Zoey --- Containers/redis/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containers/redis/Dockerfile b/Containers/redis/Dockerfile index 53b4781a..cd19d005 100644 --- a/Containers/redis/Dockerfile +++ b/Containers/redis/Dockerfile @@ -3,7 +3,8 @@ FROM redis:7.0.11-alpine COPY --chmod=775 start.sh /usr/bin/start.sh -RUN apk add --no-cache openssl bash; \ +RUN set -ex; \ + apk add --no-cache openssl bash; \ \ # Give root a random password echo "root:$(openssl rand -base64 12)" | chpasswd