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.

7 lines
422 B

  1. FROM wordpress:5.7.2
  2. RUN cd /usr/local/etc/php
  3. RUN cp php.ini-production php.ini
  4. RUN sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 256M/' php.ini
  5. RUN sed -i 's/max_input_time = 60/max_input_time = 300/' php.ini
  6. RUN sed -i 's/memory_limit = 128M/memory_limit = 256M/' php.ini
  7. RUN sed -i 's/max_execution_time = 30/max_execution_time = 300/' php.ini
  8. RUN sed -i 's/post_max_size = 8M/post_max_size = 512M/' php.ini