You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.6 KiB

2 years ago
  1. FROM dimti/php:5.6
  2. ###########################################################################
  3. # Pear Mail and Mail_Mime:
  4. ###########################################################################
  5. ARG INSTALL_PEAR_MAIL=false
  6. RUN if [ ${INSTALL_PEAR_MAIL} = true ]; then \
  7. pear install Mail && pear install Mail_Mime \
  8. ;fi
  9. ###########################################################################
  10. # xDebug (termporary):
  11. ###########################################################################
  12. # Copy xdebug configuration for remote debugging
  13. COPY ./xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
  14. ###########################################################################
  15. # Permission denied on /tmp folder:
  16. ###########################################################################
  17. RUN chmod 1777 /tmp
  18. ###########################################################################
  19. # Tune opts:
  20. ###########################################################################
  21. ARG PHP_OPT_SHORT_OPEN_TAG=Off
  22. RUN sed -i "s/^short_open_tag = .*/short_open_tag = $PHP_OPT_SHORT_OPEN_TAG/g" "$PHP_INI_DIR/php.ini"
  23. ARG PHP_OPT_MAX_EXECUTION_TIME=600
  24. RUN sed -i "s/^max_execution_time = .*/max_execution_time = $PHP_OPT_MAX_EXECUTION_TIME/g" "$PHP_INI_DIR/php.ini"
  25. ARG PHP_OPT_MEMORY_LIMIT=256M
  26. RUN sed -i "s/^memory_limit = .*/memory_limit = $PHP_OPT_MEMORY_LIMIT/g" "$PHP_INI_DIR/php.ini"
  27. ARG PHP_OPT_POST_MAX_SIZE=48M
  28. RUN sed -i "s/^post_max_size = .*/post_max_size = $PHP_OPT_POST_MAX_SIZE/g" "$PHP_INI_DIR/php.ini"
  29. ARG PHP_OPT_UPLOAD_MAX_FILESIZE=16M
  30. RUN sed -i "s/^upload_max_filesize = .*/upload_max_filesize = $PHP_OPT_UPLOAD_MAX_FILESIZE/g" "$PHP_INI_DIR/php.ini"