Browse Source

[lumen] Update to PHP 8 (#6180)

Joan Miquel 4 years ago
parent
commit
5fae103947

+ 1 - 2
frameworks/PHP/lumen/composer.json

@@ -5,8 +5,7 @@
     "license": "MIT",
     "type": "project",
     "require": {
-        "php": "^7.3",
-        "laravel/lumen-framework": "^8.1"
+        "laravel/lumen-framework": "^8.2"
     },
     "require-dev": {
         "fzaninotto/faker": "^1.9.1",

+ 1 - 0
frameworks/PHP/lumen/deploy/nginx.conf

@@ -2,6 +2,7 @@ user www-data;
 worker_processes  auto;
 error_log stderr error;
 worker_rlimit_nofile 200000;
+daemon off;
 
 events {
     worker_connections 16384;

+ 7 - 7
frameworks/PHP/lumen/lumen.dockerfile

@@ -1,21 +1,21 @@
-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  > /dev/null
-RUN apt-get install -yqq php7.4-mbstring php7.4-xml  > /dev/null
+    apt-get install -yqq nginx git unzip php8.0 php8.0-common php8.0-cli php8.0-fpm php8.0-mysql  > /dev/null
+RUN apt-get install -yqq php8.0-mbstring php8.0-xml  > /dev/null
 
 RUN apt-get install -yqq composer > /dev/null
 
-COPY deploy/conf/* /etc/php/7.4/fpm/
+COPY deploy/conf/* /etc/php/8.0/fpm/
 
 ADD ./ /lumen
 WORKDIR /lumen
 
-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
 
@@ -26,5 +26,5 @@ RUN mkdir -p /lumen/storage/framework/cache
 
 RUN chmod -R 777 /lumen
 
-CMD service php7.4-fpm start && \
-    nginx -c /lumen/deploy/nginx.conf -g "daemon off;"
+CMD service php8.0-fpm start && \
+    nginx -c /lumen/deploy/nginx.conf