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.

93 lines
3.0 KiB

  1. USER root
  2. ###########################################################################
  3. # Set custom timezone if needed
  4. ###########################################################################
  5. ARG CUSTOM_TZ=Etc/UTC
  6. RUN if [ ${CUSTOM_TZ} -ne $(cat /etc/timezone) ]; then \
  7. ln -snf /usr/share/zoneinfo/$CUSTOM_TZ /etc/localtime && \
  8. echo $CUSTOM_TZ > /etc/timezone \
  9. ;fi
  10. ###########################################################################
  11. # Set additional locale if needed:
  12. ###########################################################################
  13. ARG CUSTOM_LOCALE=en_US.UTF-8
  14. RUN if [ ${CUSTOM_LOCALE} -ne 'en_US.UTF-8' ]; then \
  15. locale-gen ${CUSTOM_LOCALE} \
  16. ;fi
  17. ###########################################################################
  18. # Pear Mail and Mail_Mime:
  19. ###########################################################################
  20. USER root
  21. ARG INSTALL_PEAR_MAIL=false
  22. RUN if [ ${INSTALL_PEAR_MAIL} = true ]; then \
  23. pear install Mail && pear install Mail_Mime \
  24. ;fi
  25. ###########################################################################
  26. # Libreoffice
  27. ###########################################################################
  28. USER root
  29. ARG INSTALL_LIBREOFFICE=false
  30. RUN if [ ${INSTALL_LIBREOFFICE} = true ]; then \
  31. apt update -qq && \
  32. apt-get install libreoffice-nogui -qq --no-install-recommends \
  33. ;fi
  34. ###########################################################################
  35. # НУЦ:
  36. ###########################################################################
  37. USER root
  38. ARG INSTALL_NUC_CERTS=false
  39. RUN if [ ${INSTALL_NUC_CERTS} = true ]; then \
  40. mkdir /usr/local/share/ca-certificates/extra && \
  41. cd /usr/local/share/ca-certificates/extra && \
  42. curl -O https://gu-st.ru/content/lending/russian_trusted_root_ca_pem.crt && \
  43. curl -O https://gu-st.ru/content/lending/russian_trusted_sub_ca_pem.crt && \
  44. update-ca-certificates \
  45. ;fi
  46. ###########################################################################
  47. # Tune opts:
  48. ###########################################################################
  49. USER root
  50. ARG PHP_OPT_MEMORY_LIMIT=256M
  51. RUN sed -i "s/^memory_limit = .*/memory_limit = $PHP_OPT_MEMORY_LIMIT/g" "$PHP_INI_DIR/php.ini"
  52. ARG PHP_OPT_POST_MAX_SIZE=300M
  53. RUN sed -i "s/^post_max_size = .*/post_max_size = $PHP_OPT_POST_MAX_SIZE/g" "$PHP_INI_DIR/php.ini"
  54. ARG PHP_OPT_UPLOAD_MAX_FILESIZE=100M
  55. RUN sed -i "s/^upload_max_filesize = .*/upload_max_filesize = $PHP_OPT_UPLOAD_MAX_FILESIZE/g" "$PHP_INI_DIR/php.ini"
  56. ARG PHP_OPT_MAX_EXECUTION_TIME=600
  57. RUN sed -i "s/^max_execution_time = .*/max_execution_time = $PHP_OPT_MAX_EXECUTION_TIME/g" "$PHP_INI_DIR/php.ini"
  58. ARG PHP_OPT_SHORT_OPEN_TAG=Off
  59. RUN sed -i "s/^short_open_tag = .*/short_open_tag = $PHP_OPT_SHORT_OPEN_TAG/g" "$PHP_INI_DIR/php.ini"
  60. ###########################################################################
  61. # Cleanup
  62. ###########################################################################
  63. USER root
  64. # Clean up
  65. RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*