2018-10-14 22:41:35 +00:00
|
|
|
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
2017-02-17 08:45:48 +00:00
|
|
|
|
|
|
|
RUN mkdir -p /app/code
|
|
|
|
WORKDIR /app/code
|
|
|
|
|
2018-12-26 20:18:40 +00:00
|
|
|
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.13.0.tar.gz | tar -zxvf - --strip-components=1
|
2017-02-17 08:45:48 +00:00
|
|
|
|
2018-05-21 17:05:19 +00:00
|
|
|
RUN mv data data-orig && ln -s /app/data data
|
2017-02-17 08:45:48 +00:00
|
|
|
|
2018-05-21 17:04:40 +00:00
|
|
|
# official extensions
|
2018-09-08 23:47:32 +00:00
|
|
|
RUN wget https://github.com/FreshRSS/Extensions/archive/2d0358e75961cbfcac7c2cbe09b098905ff67803.tar.gz -O - | tar -xz --strip-components=1 -C /app/code/extensions && \
|
2018-05-30 22:09:44 +00:00
|
|
|
mv /app/code/extensions /app/code/extensions-orig && \
|
|
|
|
ln -s /app/data/extensions /app/code/extensions
|
2017-02-18 10:51:44 +00:00
|
|
|
|
2018-05-21 17:07:27 +00:00
|
|
|
# configure apache
|
|
|
|
RUN rm /etc/apache2/sites-enabled/*
|
|
|
|
RUN sed -e 's,^ErrorLog.*,ErrorLog "|/bin/cat",' -i /etc/apache2/apache2.conf
|
|
|
|
COPY apache/mpm_prefork.conf /etc/apache2/mods-available/mpm_prefork.conf
|
|
|
|
|
|
|
|
RUN a2disconf other-vhosts-access-log
|
|
|
|
ADD apache/freshrss.conf /etc/apache2/sites-enabled/freshrss.conf
|
|
|
|
RUN echo "Listen 8000" > /etc/apache2/ports.conf
|
|
|
|
|
2019-01-04 00:25:05 +00:00
|
|
|
RUN a2enmod headers expires deflate mime dir rewrite
|
2017-02-17 08:45:48 +00:00
|
|
|
|
2017-02-17 10:28:42 +00:00
|
|
|
RUN rm -rf /var/lib/php \
|
2017-06-01 08:47:09 +00:00
|
|
|
&& ln -s /run/php /var/lib/php \
|
|
|
|
&& mkdir -p /run/php/session
|
|
|
|
|
2018-10-14 22:41:35 +00:00
|
|
|
RUN crudini --set /etc/php/7.2/apache2/php.ini PHP upload_max_filesize 64M && \
|
|
|
|
crudini --set /etc/php/7.2/apache2/php.ini PHP post_max_size 64M && \
|
|
|
|
crudini --set /etc/php/7.2/apache2/php.ini PHP memory_limit 64M && \
|
|
|
|
crudini --set /etc/php/7.2/apache2/php.ini Session session.save_path /run/php/session && \
|
|
|
|
crudini --set /etc/php/7.2/apache2/php.ini Session session.gc_probability 1 && \
|
|
|
|
crudini --set /etc/php/7.2/apache2/php.ini Session session.gc_divisor 100
|
2017-02-17 10:28:42 +00:00
|
|
|
|
2017-02-17 08:45:48 +00:00
|
|
|
ADD start.sh /app/code/start.sh
|
|
|
|
|
|
|
|
CMD [ "/app/code/start.sh" ]
|