1 Commits

Author SHA1 Message Date
Sagent 29645cedac fix: migrate from jcabillot/phpapache to dunglas/frankenphp
PR Checks / hadolint (pull_request) Successful in 6s
2026-06-29 12:42:42 +00:00
2 changed files with 5 additions and 19 deletions
+4 -4
View File
@@ -1,6 +1,8 @@
FROM dunglas/frankenphp:1-php8.5-alpine
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
WORKDIR /app
# Install required PHP extensions for RSS-Bridge
@@ -8,10 +10,8 @@ RUN install-php-extensions mbstring simplexml curl json iconv
COPY Caddyfile /etc/frankenphp/Caddyfile
# Download RSS-Bridge (two-step to avoid pipefail dependency)
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
# Download RSS-Bridge
RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1 -C /app/public
# Configure RSS-Bridge
RUN echo "*" > "/app/public/whitelist.txt" && \
+1 -15
View File
@@ -1,17 +1,3 @@
{
"$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"
}
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}