123456789101112131415161718192021222324252627 |
- FROM ubuntu:20.10
- ARG DEBIAN_FRONTEND=noninteractive
- RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
- RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
- RUN apt-get update -yqq > /dev/null && \
- apt-get install -yqq nginx git unzip \
- php8.0-fpm php8.0-mysql php8.0-xml php8.0-mbstring php8.0-intl > /dev/null
- RUN apt-get install -yqq composer > /dev/null
- COPY deploy/conf/* /etc/php/8.0/fpm/
- COPY deploy/conf/* /etc/php/8.0/cli/
- ADD ./ /cakephp
- WORKDIR /cakephp
- RUN if [ $(nproc) = 2 ]; then sed -i "s|pm.max_children = 1024|pm.max_children = 512|g" /etc/php/8.0/fpm/php-fpm.conf ; fi;
- RUN composer install --optimize-autoloader --classmap-authoritative --no-dev --quiet
- RUN chmod -R 777 /cakephp
- CMD service php8.0-fpm start && \
- nginx -c /cakephp/deploy/nginx.conf
|