Files
rssbridge/Dockerfile
T

11 lines
395 B
Docker
Raw Normal View History

2017-11-06 20:06:47 +01:00
ARG VERSION="latest"
2020-01-07 20:23:55 -05:00
FROM "jcabillot/phpapache:${VERSION}"
2018-05-06 16:28:37 +00:00
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
2017-10-29 14:48:40 +00:00
2026-06-08 19:17:29 +00:00
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2017-11-03 10:15:47 +01:00
RUN curl -s -L "https://github.com/RSS-Bridge/rss-bridge/tarball/master/" | tar -zx --strip=1
2017-11-03 10:12:36 +01:00
RUN echo "*" > "/var/www/html/whitelist.txt" && \
mkdir -p /var/www/html/cache && \
chown -R www-data:www-data /var/www/html