11 lines
395 B
Docker
11 lines
395 B
Docker
ARG VERSION="latest"
|
|
FROM "jcabillot/phpapache:${VERSION}"
|
|
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1
|
|
|
|
RUN echo "*" > "/var/www/html/whitelist.txt" && \
|
|
mkdir -p /var/www/html/cache && \
|
|
chown -R www-data:www-data /var/www/html
|