From 3343843fa5362f296c887e108332c971fd08f19b Mon Sep 17 00:00:00 2001 From: Robert Butora <robert.butora@inaf.it> Date: Wed, 6 Nov 2024 18:20:40 +0100 Subject: [PATCH] startup.log file must be writable by user 1000 --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 22e203d..ec6cf28 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -51,7 +51,8 @@ RUN cd ${WEBAPP_DIR} && unzip vlkb-siav2-${VLKB_VERSION}.war # enable config at start-up RUN chmod a+rw ${WEBAPP_DIR}/WEB-INF/web.xml \ && chmod a+rw ${WEBAPP_DIR}/WEB-INF/classes/search.properties \ - && chmod a+rw ${WEBAPP_DIR}/WEB-INF/classes/formatresponsefilter.properties + && chmod a+rw ${WEBAPP_DIR}/WEB-INF/classes/formatresponsefilter.properties \ + && chmod a+rw ${STARTUP_LOG} # run -- GitLab