Fix entrypoint.sh permission

This commit is contained in:
Ingo Schuck 2026-05-06 19:35:03 +02:00
parent edfd8f0755
commit 373e6c1e20

View file

@ -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"]