From 3bb3a03c7f6c8cc7e63d81865ec88478c7ae1ef1 Mon Sep 17 00:00:00 2001 From: Glenn Date: Thu, 20 Mar 2025 22:55:15 +0100 Subject: [PATCH] fix(Dockerfile): update Monica version and adjust Procfile path Prevent potential security vulnerabilities and bugs by updating to the latest version of Monica. Ensure Procfile is located correctly for better application functionality. - Update Monica version from 4.0-apache to 4.1-apache - Change Procfile copy destination to /var/www/html/Procfile Signed-off-by: Glenn --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d7c0cca..d1a9469 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ # FROM monica:3.7-apache -FROM monica:4.0-apache +# FROM monica:4.0-apache +FROM monica:4.1-apache -RUN rm -f Procfile +RUN rm -f Procfile # app.json -COPY Procfile Procfile +COPY Procfile /var/www/html/Procfile