2021-02-20 19:38:33 +00:00
|
|
|
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
2017-02-17 08:45:48 +00:00
|
|
|
|
|
|
|
RUN mkdir -p /app/code
|
|
|
|
WORKDIR /app/code
|
|
|
|
|
2020-09-23 21:11:56 +00:00
|
|
|
ARG VERSION=1.17.0
|
2019-10-31 22:56:46 +00:00
|
|
|
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.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
|
2020-09-23 21:12:29 +00:00
|
|
|
RUN wget https://github.com/FreshRSS/Extensions/archive/1784092164139dc6961ba5cc5b920331b586acbc.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-02-03 23:35:38 +00:00
|
|
|
RUN a2enmod headers expires deflate mime dir rewrite setenvif
|
2017-02-17 08:45:48 +00:00
|
|
|
|
2019-04-04 17:18:44 +00:00
|
|
|
RUN rm -rf /var/lib/php && ln -s /run/php /var/lib/php
|
2017-06-01 08:47:09 +00:00
|
|
|
|
2021-02-20 19:38:33 +00:00
|
|
|
RUN crudini --set /etc/php/7.4/apache2/php.ini PHP upload_max_filesize 64M && \
|
|
|
|
crudini --set /etc/php/7.4/apache2/php.ini PHP post_max_size 64M && \
|
|
|
|
crudini --set /etc/php/7.4/apache2/php.ini PHP memory_limit 64M && \
|
|
|
|
crudini --set /etc/php/7.4/apache2/php.ini Session session.save_path /run/php/session && \
|
|
|
|
crudini --set /etc/php/7.4/apache2/php.ini Session session.gc_probability 1 && \
|
|
|
|
crudini --set /etc/php/7.4/apache2/php.ini Session session.gc_divisor 100
|
2017-02-17 10:28:42 +00:00
|
|
|
|
2021-02-20 19:38:33 +00:00
|
|
|
RUN ln -s /app/data/php.ini /etc/php/7.4/apache2/conf.d/99-cloudron.ini && \
|
|
|
|
ln -s /app/data/php.ini /etc/php/7.4/cli/conf.d/99-cloudron.ini
|
2020-09-23 21:11:56 +00:00
|
|
|
|
2017-02-17 08:45:48 +00:00
|
|
|
ADD start.sh /app/code/start.sh
|
|
|
|
|
|
|
|
CMD [ "/app/code/start.sh" ]
|