ZSCGR commited on
Commit
82baf05
·
verified ·
1 Parent(s): da42e2b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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,#" ./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,7 +60,7 @@ ENV LISTEN ''
60
  ENV OIDC_ENABLED ''
61
  ENV TRUSTED_PROXY ''
62
 
63
- ENTRYPOINT ["./Docker/entrypoint.sh"]
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