|
@@ -1,24 +1,28 @@
|
|
|
-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
|
|
|
+ apt-get install -yqq nginx git unzip php8.0 php8.0-common php8.0-cli php8.0-fpm php8.0-mysql > /dev/null
|
|
|
|
|
|
-COPY deploy/conf/* /etc/php/7.4/fpm/
|
|
|
+COPY deploy/conf/* /etc/php/8.0/fpm/
|
|
|
|
|
|
ADD ./ /fat-free
|
|
|
WORKDIR /fat-free
|
|
|
|
|
|
ENV F3DIR="/fat-free/src"
|
|
|
|
|
|
-RUN git clone -b 3.7.1 --single-branch --depth 1 "https://github.com/bcosca/fatfree-core.git" src
|
|
|
+#RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
|
|
|
+RUN apt-get install -yqq composer > /dev/null
|
|
|
|
|
|
-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 composer install --optimize-autoloader --classmap-authoritative --no-dev --quiet
|
|
|
+#RUN git clone -b 3.7.2 --single-branch --depth 1 "https://github.com/bcosca/fatfree-core.git" src
|
|
|
+
|
|
|
+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 chmod -R 777 /fat-free
|
|
|
|
|
|
-CMD service php7.4-fpm start && \
|
|
|
- nginx -c /fat-free/deploy/nginx.conf -g "daemon off;"
|
|
|
+CMD service php8.0-fpm start && \
|
|
|
+ nginx -c /fat-free/deploy/nginx.conf
|