File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,18 +6,18 @@ RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /de
66RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
77RUN apt-get update -yqq > /dev/null && \
88 apt-get install -yqq nginx git unzip \
9- php8.4 -cli php8.4 -fpm php8.4 -mysql php8.4 -dev > /dev/null
9+ php8.5 -cli php8.5 -fpm php8.5 -mysql php8.5 -dev > /dev/null
1010
1111COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
1212
13- COPY deploy/conf/* /etc/php/8.4 /fpm/
13+ COPY deploy/conf/* /etc/php/8.5 /fpm/
1414
1515WORKDIR /duckphp
1616COPY --link . .
1717
18- RUN if [ $(nproc) = 2 ]; then sed -i "s|pm.max_children = 1024|pm.max_children = 512|g" /etc/php/8.4 /fpm/php-fpm.conf ; fi;
18+ RUN if [ $(nproc) = 2 ]; then sed -i "s|pm.max_children = 1024|pm.max_children = 512|g" /etc/php/8.5 /fpm/php-fpm.conf ; fi;
1919
2020RUN composer install --optimize-autoloader --classmap-authoritative --no-dev --quiet
2121
22- CMD service php8.4 -fpm start && \
22+ CMD service php8.5 -fpm start && \
2323 nginx -c /duckphp/deploy/nginx.conf
You can’t perform that action at this time.
0 commit comments