|
@@ -7,18 +7,18 @@ RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php > /dev/null && \
|
|
|
apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null
|
|
apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null
|
|
|
|
|
|
|
|
RUN apt-get install -yqq nginx git unzip \
|
|
RUN apt-get install -yqq nginx git unzip \
|
|
|
- php8.4-fpm php8.4-mysql > /dev/null
|
|
|
|
|
|
|
+ php8.5-fpm php8.5-mysql > /dev/null
|
|
|
|
|
|
|
|
-COPY --link deploy/conf/* /etc/php/8.4/fpm/
|
|
|
|
|
|
|
+COPY --link deploy/conf/* /etc/php/8.5/fpm/
|
|
|
WORKDIR /kumbiaphp
|
|
WORKDIR /kumbiaphp
|
|
|
COPY --link . .
|
|
COPY --link . .
|
|
|
|
|
|
|
|
RUN git clone -b v1.2.1 --single-branch --depth 1 https://github.com/KumbiaPHP/KumbiaPHP.git vendor/Kumbia
|
|
RUN git clone -b v1.2.1 --single-branch --depth 1 https://github.com/KumbiaPHP/KumbiaPHP.git vendor/Kumbia
|
|
|
RUN git clone -b master --single-branch --depth 1 https://github.com/KumbiaPHP/ActiveRecord.git vendor/Kumbia/ActiveRecord
|
|
RUN git clone -b master --single-branch --depth 1 https://github.com/KumbiaPHP/ActiveRecord.git vendor/Kumbia/ActiveRecord
|
|
|
|
|
|
|
|
-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;
|
|
|
|
|
|
|
+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;
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
-CMD service php8.4-fpm start && \
|
|
|
|
|
|
|
+CMD service php8.5-fpm start && \
|
|
|
nginx -c /kumbiaphp/deploy/nginx.conf
|
|
nginx -c /kumbiaphp/deploy/nginx.conf
|