Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -45,7 +45,7 @@ RUN a2dismod -q -f alias autoindex negotiation status && \
|
|
45 |
RUN sed -r -i "/^\s*(CustomLog|ErrorLog|Listen) /s/^/#/" /etc/apache2/apache2.conf && \
|
46 |
sed -r -i "/^\s*Listen /s/^/#/" /etc/apache2/ports.conf && \
|
47 |
# Disable built-in updates when using Docker, as the full image is supposed to be updated instead.
|
48 |
-
sed -r -i "\\#disable_update#s#^.*#\t'disable_update' => true,#"
|
49 |
touch /var/www/FreshRSS/Docker/env.txt && \
|
50 |
echo "7,37 * * * * . /var/www/FreshRSS/Docker/env.txt; \
|
51 |
su www-data -s /bin/sh -c 'php /var/www/FreshRSS/app/actualize_script.php' \
|
@@ -60,7 +60,7 @@ ENV LISTEN ''
|
|
60 |
ENV OIDC_ENABLED ''
|
61 |
ENV TRUSTED_PROXY ''
|
62 |
|
63 |
-
ENTRYPOINT ["
|
64 |
|
65 |
EXPOSE 8080
|
66 |
# hadolint ignore=DL3025
|
|
|
45 |
RUN sed -r -i "/^\s*(CustomLog|ErrorLog|Listen) /s/^/#/" /etc/apache2/apache2.conf && \
|
46 |
sed -r -i "/^\s*Listen /s/^/#/" /etc/apache2/ports.conf && \
|
47 |
# Disable built-in updates when using Docker, as the full image is supposed to be updated instead.
|
48 |
+
sed -r -i "\\#disable_update#s#^.*#\t'disable_update' => true,#" config.default.php && \
|
49 |
touch /var/www/FreshRSS/Docker/env.txt && \
|
50 |
echo "7,37 * * * * . /var/www/FreshRSS/Docker/env.txt; \
|
51 |
su www-data -s /bin/sh -c 'php /var/www/FreshRSS/app/actualize_script.php' \
|
|
|
60 |
ENV OIDC_ENABLED ''
|
61 |
ENV TRUSTED_PROXY ''
|
62 |
|
63 |
+
ENTRYPOINT ["entrypoint.sh"]
|
64 |
|
65 |
EXPOSE 8080
|
66 |
# hadolint ignore=DL3025
|