1 Commits

Author SHA1 Message Date
Sagent 7fa44d9c3d fix: migrate from jcabillot/phpapache to dunglas/frankenphp
PR Checks / build-test (pull_request) Failing after 57s
PR Checks / hadolint (pull_request) Failing after 13m17s
2026-06-29 12:33:44 +00:00
3 changed files with 19 additions and 18 deletions
+11
View File
@@ -0,0 +1,11 @@
{
auto_https off
frankenphp
}
:80 {
root * /app/public
encode zstd br gzip
php_server
file_server
}
+7 -3
View File
@@ -1,5 +1,9 @@
ARG VERSION="latest" FROM dunglas/frankenphp:1-php8.5-alpine
FROM "jcabillot/phpapache:${VERSION}"
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>" LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
COPY "root" "/var/www/html" WORKDIR /app
COPY Caddyfile /etc/frankenphp/Caddyfile
COPY --chown=www-data:www-data root /app/public
USER www-data
+1 -15
View File
@@ -1,17 +1,3 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json"
"customManagers": [
{
"customType": "regex",
"description": "Detect ARG VERSION pin for jcabillot/phpapache base image",
"managerFilePatterns": [
"/^Dockerfile$/"
],
"matchStrings": [
"ARG\\s+VERSION=\"(?<currentValue>[^\"]+)\""
],
"depNameTemplate": "jcabillot/phpapache",
"datasourceTemplate": "docker"
}
]
} }