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.

66 lines
2.3 KiB

  1. FROM dimti/php:8.1
  2. ###########################################################################
  3. # Redis and igbinary:
  4. ###########################################################################
  5. ARG INSTALL_REDIS=false
  6. COPY ./igbinary.ini /usr/local/etc/php/conf.d/igbinary.ini
  7. RUN if [ ${INSTALL_REDIS} = true ]; then \
  8. pecl install -a igbinary \
  9. && docker-php-ext-enable igbinary \
  10. && printf "yes\n" | pecl install redis \
  11. && docker-php-ext-enable redis \
  12. ;fi
  13. ###########################################################################
  14. # Pear Mail and Mail_Mime:
  15. ###########################################################################
  16. ARG INSTALL_PEAR_MAIL=false
  17. RUN if [ ${INSTALL_PEAR_MAIL} = true ]; then \
  18. pear install Mail && pear install Mail_Mime \
  19. ;fi
  20. ###########################################################################
  21. # xDebug (termporary):
  22. ###########################################################################
  23. # Copy xdebug configuration for remote debugging
  24. COPY ./xdebug3/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini
  25. ###########################################################################
  26. # Libreoffice
  27. ###########################################################################
  28. ARG INSTALL_LIBREOFFICE=false
  29. ARG DEBIAN_FRONTEND=noninteractive
  30. RUN if [ ${INSTALL_LIBREOFFICE} = true ]; then \
  31. apt-get update \
  32. && apt-get install -y libreoffice-nogui --no-install-recommends \
  33. && apt-get clean \
  34. ;fi
  35. ###########################################################################
  36. # Tune opts:
  37. ###########################################################################
  38. ARG PHP_OPT_SHORT_OPEN_TAG=Off
  39. RUN sed -i "s/^short_open_tag = .*/short_open_tag = $PHP_OPT_SHORT_OPEN_TAG/g" "$PHP_INI_DIR/php.ini"
  40. ARG PHP_OPT_MAX_EXECUTION_TIME=600
  41. RUN sed -i "s/^max_execution_time = .*/max_execution_time = $PHP_OPT_MAX_EXECUTION_TIME/g" "$PHP_INI_DIR/php.ini"
  42. ARG PHP_OPT_MEMORY_LIMIT=256M
  43. RUN sed -i "s/^memory_limit = .*/memory_limit = $PHP_OPT_MEMORY_LIMIT/g" "$PHP_INI_DIR/php.ini"
  44. ARG PHP_OPT_POST_MAX_SIZE=48M
  45. RUN sed -i "s/^post_max_size = .*/post_max_size = $PHP_OPT_POST_MAX_SIZE/g" "$PHP_INI_DIR/php.ini"
  46. ARG PHP_OPT_UPLOAD_MAX_FILESIZE=16M
  47. RUN sed -i "s/^upload_max_filesize = .*/upload_max_filesize = $PHP_OPT_UPLOAD_MAX_FILESIZE/g" "$PHP_INI_DIR/php.ini"