From 373e6c1e203114b0a0faa65a0e099dba6ce6d942 Mon Sep 17 00:00:00 2001 From: Ingo Schuck Date: Wed, 6 May 2026 19:35:03 +0200 Subject: [PATCH] Fix entrypoint.sh permission --- images/layered/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/layered/Containerfile b/images/layered/Containerfile index 7482280c..18511c61 100644 --- a/images/layered/Containerfile +++ b/images/layered/Containerfile @@ -47,7 +47,7 @@ VOLUME [ \ USER root # This entrypoint script link build assets of the image to the mounted sites volume at container initialization COPY resources/core/main-entrypoint.sh /usr/local/bin/entrypoint.sh -RUN chmod +x /usr/local/bin/entrypoint.sh +RUN chmod ugo+rx /usr/local/bin/entrypoint.sh USER frappe ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]