From c67125bf2a2f5aa8474120cd96947d4a047d1ce2 Mon Sep 17 00:00:00 2001 From: "Alex Lau (AvengerMoJo)" Date: Sun, 8 Oct 2023 17:21:44 +0800 Subject: [PATCH] Fix permission error Signed-off-by: Alex Lau (AvengerMoJo) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 227594c..585d690 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,4 +5,6 @@ RUN zypper --non-interactive install osc RUN zypper --non-interactive clean --all COPY hello.sh /hello.sh +RUN chmod +x /hello.sh + ENTRYPOINT ["/hello.sh"]