kumbiaphp-raw.dockerfile 753 B

1234567891011121314151617181920
  1. FROM ubuntu:16.04
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
  4. RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
  5. RUN apt-get update -yqq > /dev/null
  6. RUN apt-get install -yqq nginx git unzip php7.2 php7.2-common php7.2-cli php7.2-fpm php7.2-mysql > /dev/null
  7. COPY deploy/conf/* /etc/php/7.2/fpm/
  8. ADD ./ /kumbiaphp
  9. WORKDIR /kumbiaphp
  10. RUN git clone -b v1.0.0-rc.2 --single-branch --depth 1 -q https://github.com/KumbiaPHP/KumbiaPHP.git vendor/Kumbia
  11. RUN if [ $(nproc) = 2 ]; then sed -i "s|pm.max_children = 2048|pm.max_children = 512|g" /etc/php/7.2/fpm/php-fpm.conf ; fi;
  12. CMD service php7.2-fpm start && \
  13. nginx -c /kumbiaphp/deploy/nginx.conf -g "daemon off;"