1234567891011121314151617181920212223242526 |
- FROM ubuntu:20.04
- 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 php7.4 php7.4-common php7.4-cli php7.4-fpm php7.4-mysql php7.4-xml php7.4-mbstring php7.0-mcrypt php7.4-intl > /dev/null
- RUN apt-get install -yqq composer > /dev/null
- COPY deploy/conf/* /etc/php/7.4/fpm/
- COPY deploy/conf/* /etc/php/7.4/cli/
- ADD ./ /cakephp
- WORKDIR /cakephp
- RUN if [ $(nproc) = 2 ]; then sed -i "s|pm.max_children = 1024|pm.max_children = 512|g" /etc/php/7.4/fpm/php-fpm.conf ; fi;
- RUN composer install --optimize-autoloader --classmap-authoritative --no-dev --quiet
- RUN chmod -R 777 /cakephp
- CMD service php7.4-fpm start && \
- nginx -c /cakephp/deploy/nginx.conf
|