From 7f35edb25d249c34b7113d13b9b8f1b47dc8788d Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Thu, 29 Feb 2024 23:04:58 +0100 Subject: [PATCH] FIX: ensure that entrypoint is executable --- Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 65d6ee6..97b8ed0 100644 --- a/Containerfile +++ b/Containerfile @@ -61,4 +61,5 @@ RUN cd /usr/src/redmine/plugins;git clone https://github.com/hicknhack-software/ RUN cd /usr/src/redmine/plugins;git clone https://github.com/jrgarlick/redmine_timesheet.git -COPY docker-entrypoint.sh / \ No newline at end of file +COPY docker-entrypoint.sh / +RUN chmod a+x /docker-entrypoint.sh \ No newline at end of file