3 Commits

Author SHA1 Message Date
Sagent 620ac41865 fix: remove bash SHELL directive incompatible with Alpine FrankenPHP
PR Checks / hadolint (pull_request) Failing after 10m25s
2026-06-29 13:37:06 +00:00
jcabillot 07c24eed7c Merge pull request 'fix: migrate from jcabillot/phpapache to dunglas/frankenphp' (#10) from fix/frankenphp-migration into master
Main Release / hadolint (push) Successful in 11s
Tag Release / tag (push) Failing after 14s
Main Release / build-push (push) Failing after 40s
Reviewed-on: #10
2026-06-29 09:32:53 -04:00
Sagent 699acc8684 fix: migrate from jcabillot/phpapache to dunglas/frankenphp
PR Checks / hadolint (pull_request) Successful in 6s
2026-06-29 12:50:57 +00:00
2 changed files with 19 additions and 5 deletions
+4 -4
View File
@@ -1,8 +1,6 @@
FROM dunglas/frankenphp:1-php8.5-alpine FROM dunglas/frankenphp:1-php8.5-alpine
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>" LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
WORKDIR /app WORKDIR /app
# Install required PHP extensions for RSS-Bridge # Install required PHP extensions for RSS-Bridge
@@ -10,8 +8,10 @@ RUN install-php-extensions mbstring simplexml curl json iconv
COPY Caddyfile /etc/frankenphp/Caddyfile COPY Caddyfile /etc/frankenphp/Caddyfile
# Download RSS-Bridge # Download RSS-Bridge (two-step to avoid pipefail dependency)
RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1 -C /app/public RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" -o /tmp/rssbridge.tar && \
tar -zx --strip=1 -C /app/public -f /tmp/rssbridge.tar && \
rm /tmp/rssbridge.tar
# Configure RSS-Bridge # Configure RSS-Bridge
RUN echo "*" > "/app/public/whitelist.txt" && \ RUN echo "*" > "/app/public/whitelist.txt" && \
+15 -1
View File
@@ -1,3 +1,17 @@
{ {
"$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"
}
]
} }