fix: chown /var/www/html to www-data so FileCache can write
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 1m39s
Docker Build and Push / test (pull_request) Failing after 41s
Docker Build and Push / push (pull_request) Has been skipped

This commit is contained in:
2026-06-08 19:53:12 +00:00
parent c148d9480d
commit a552e414cc
+3 -1
View File
@@ -5,4 +5,6 @@ LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"] SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1 RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1
RUN echo "*" > "/var/www/html/whitelist.txt" RUN echo "*" > "/var/www/html/whitelist.txt" && \
mkdir -p /var/www/html/cache && \
chown -R www-data:www-data /var/www/html