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 <glenux@glenux.net>
This commit is contained in:
Glenn Y. Rolland 2025-03-20 22:55:15 +01:00
parent d37eb675ed
commit 3bb3a03c7f

View file

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