From 234590f8ee939dc7cb292ab41d703320f07208ed Mon Sep 17 00:00:00 2001 From: Zoey Date: Wed, 3 May 2023 17:02:07 +0200 Subject: [PATCH] add set -ex Co-authored-by: Simon L. Signed-off-by: Zoey --- Containers/domaincheck/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containers/domaincheck/Dockerfile b/Containers/domaincheck/Dockerfile index 8003bfab..7c180425 100644 --- a/Containers/domaincheck/Dockerfile +++ b/Containers/domaincheck/Dockerfile @@ -1,5 +1,6 @@ FROM alpine:3.17.3 -RUN apk add --no-cache bash lighttpd netcat-openbsd; \ +RUN set -ex; \ + apk add --no-cache bash lighttpd netcat-openbsd; \ adduser -S www-data -G www-data; \ rm -rf /etc/lighttpd/lighttpd.conf; \ chmod +r -R /etc/lighttpd && \