Browse Source

[cakephp] Update to PHP8 (#6281)

Joan Miquel 4 years ago
parent
commit
72a6226688
2 changed files with 8 additions and 11 deletions
  1. 7 8
      frameworks/PHP/cakephp/cakephp.dockerfile
  2. 1 3
      frameworks/PHP/cakephp/composer.json

+ 7 - 8
frameworks/PHP/cakephp/cakephp.dockerfile

@@ -1,28 +1,27 @@
-FROM ubuntu:20.04
+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 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
+    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/7.4/fpm/
-COPY deploy/conf/* /etc/php/7.4/cli/
+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/7.4/fpm/php-fpm.conf ; fi;
+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
 
-EXPOSE 8080
-
-CMD service php7.4-fpm start && \
+CMD service php8.0-fpm start && \
     nginx -c /cakephp/deploy/nginx.conf
 

+ 1 - 3
frameworks/PHP/cakephp/composer.json

@@ -5,8 +5,7 @@
     "type": "project",
     "license": "MIT",
     "require": {
-        "php": ">=7.2",
-        "cakephp/cakephp": "^4.0.2",
+        "cakephp/cakephp": "^4.1",
         "cakephp/plugin-installer": "^1.0"
     },
     "autoload": {
@@ -15,7 +14,6 @@
         }
     },
     "scripts": {
-        "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
         "check": [
             "@test",
             "@cs-check"