partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

Dockerfile (574B)


      1 
      2 ARG SRC_IMAGE=partkeepr/base-dev:latest
      3 FROM ${SRC_IMAGE}
      4 
      5 # Setup PHP settings
      6 RUN sed 's@;date.timezone =@date.timezone = UTC@;s@max_execution_time = .*@max_execution_time = 72000@;s@memory_limit = .*@memory_limit = 512M@' /usr/local/etc/php/php.ini-development > /usr/local/etc/php/php.ini
      7 
      8 COPY entrypoint.sh /entrypoint.sh
      9 COPY user-entrypoint.sh /user-entrypoint.sh
     10 COPY phpinfo.php /var/www/html/phpinfo.php
     11 COPY parameters.defaults.php /parameters.defaults.php
     12 
     13 WORKDIR /var/www/pk
     14 
     15 ENTRYPOINT ["/entrypoint.sh"]
     16 CMD ["docker-php-entrypoint", "apache2-foreground"]