From 9b915ae0aba0e821bce713b10e655d213f1d1f37 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Fri, 5 Apr 2024 08:06:39 +0200 Subject: [PATCH] set propper file permissions --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 29580ca..df6abd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,8 @@ LABEL org.opencontainers.image.documentation="https://gitea.ocram85.com/CodeServ RUN \ echo "**** install starship prompt ****" && \ curl -sS -o /tmp/install.sh https://starship.rs/install.sh && \ - /tmp/install.sh && \ + chmod +x /tmp/install.sh && \ + /tmp/install.sh -f && \ rm -f /tmp/install.sh && \ echo "eval \"\$(starship init bash)\"" >> /etc/bash.bashrc