5 Commits

Author SHA1 Message Date
jcabillot d4a127241f Merge pull request 'fix: remove obsolete jcabillot/phpapache renovate custom manager' (#14) from fix/remove-phpapache-renovate into master
Main Release / hadolint (push) Successful in 10s
Main Release / test (push) Successful in 22s
Main Release / build (push) Successful in 18s
Main Release / tag (push) Failing after 37s
Reviewed-on: #14
2026-06-29 15:08:02 -04:00
Hermes Agent d3461cfc04 fix: remove obsolete renovate.json
PR Checks / hadolint (pull_request) Successful in 10s
PR Checks / build-test (pull_request) Successful in 1m1s
With the migration to dunglas/frankenphp, the custom manager
for jcabillot/phpapache is gone. renovate.json had no remaining
config — delete the file entirely.
2026-06-29 18:50:41 +00:00
Hermes Agent 7ecad8a3e8 fix: remove obsolete jcabillot/phpapache custom manager from renovate.json
PR Checks / hadolint (pull_request) Successful in 18s
PR Checks / build-test (pull_request) Successful in 1m5s
The Dockerfile already migrated to dunglas/frankenphp, the
ARG VERSION pattern is gone. The custom manager tracking
jcabillot/phpapache is no longer needed.
2026-06-29 18:38:59 +00:00
jcabillot 3e5a12c827 Merge pull request 'fix: migrate from jcabillot/phpapache to dunglas/frankenphp' (#12) from fix/frankenphp-migration into master
Main Release / hadolint (push) Successful in 9s
Main Release / test (push) Successful in 17s
Main Release / build (push) Successful in 13s
Main Release / tag (push) Successful in 13s
Tag Release / test (push) Successful in 17s
Tag Release / build-push (push) Successful in 53s
Tag Release / hadolint (push) Successful in 10s
Reviewed-on: #12
2026-06-29 09:06:59 -04:00
Sagent 7b8caa0463 fix: migrate from jcabillot/phpapache to dunglas/frankenphp
PR Checks / build-test (pull_request) Successful in 21s
PR Checks / hadolint (pull_request) Successful in 9s
2026-06-29 12:50:41 +00:00
3 changed files with 11 additions and 8 deletions
-1
View File
@@ -6,6 +6,5 @@
:8080 {
root * /app/public
encode zstd br gzip
php_server
file_server
}
-3
View File
@@ -1,3 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}
+11 -4
View File
@@ -58,10 +58,17 @@ done
echo ""
echo "Test: GET / (HTML redirect)"
RESPONSE=$(curl -sf -D - "$BASE_URL/")
STATUS=$(echo "$RESPONSE" | head -1 | grep -oP '\d{3}')
CONTENT_TYPE=$(echo "$RESPONSE" | grep -i 'content-type' | tr -d '\r' | cut -d: -f2- | xargs)
BODY=$(echo "$RESPONSE" | sed -n '/^\r$/,$p' | tail -n +2)
# Use temp file to avoid pipefail/SIGPIPE issues
TMPDIR=$(mktemp -d)
cleanup() {
docker rm -f "$CONTAINER_NAME" >/dev/null 2>&1 || true
rm -rf "$TMPDIR"
}
curl -sf -o "$TMPDIR/body" -D "$TMPDIR/headers" "$BASE_URL/"
STATUS=$(head -1 "$TMPDIR/headers" | grep -oP '\d{3}')
CONTENT_TYPE=$(grep -i 'content-type' "$TMPDIR/headers" | tr -d '\r' | cut -d: -f2- | xargs)
BODY=$(cat "$TMPDIR/body")
trap cleanup EXIT
assert "HTTP status is 200" "200" "$STATUS"
assert_match "Content-Type is text/html" "text/html" "$CONTENT_TYPE"