12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- FROM ubuntu:20.04
- 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 > /dev/null
- RUN apt-get update -yqq > /dev/null && \
- apt-get install -yqq wget git unzip libxml2-dev cmake make systemtap-sdt-dev \
- zlib1g-dev libpcre3-dev libargon2-0-dev libsodium-dev \
- php8.0-cli php8.0-dev libphp8.0-embed php8.0-pgsql nginx > /dev/null
- COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
- ADD ./ ./
- ENV NGINX_VERSION=1.21.0
- RUN git clone -b v0.0.25 --single-branch --depth 1 https://github.com/rryqszq4/ngx_php7.git > /dev/null
- RUN wget -q http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz && \
- tar -zxf nginx-${NGINX_VERSION}.tar.gz && \
- cd nginx-${NGINX_VERSION} && \
- export PHP_LIB=/usr/lib && \
- bash ./configure --user=www --group=www \
- --prefix=/nginx \
- --with-ld-opt="-Wl,-rpath,$PHP_LIB" \
- --add-module=/ngx_php7/third_party/ngx_devel_kit \
- --add-module=/ngx_php7 > /dev/null && \
- make > /dev/null && make install > /dev/null
- ADD ./ /ubiquity
- WORKDIR /ubiquity
- RUN composer require phpmv/ubiquity-ngx:dev-master --quiet
- RUN composer install --optimize-autoloader --classmap-authoritative --no-dev --quiet
- RUN chmod 777 -R app/cache/*
- COPY deploy/conf/ngx/pgsql/raw/ngxServices.php app/config/ngxServices.php
- RUN echo "opcache.preload=/ubiquity/app/config/preloader.script.php" >> deploy/conf/php.ini
- RUN echo "opcache.jit_buffer_size=128M\nopcache.jit=tracing\n" >> deploy/conf/php.ini
- RUN export WORKERS=$(( 4 * $(nproc) )) && \
- sed -i "s|worker_processes auto|worker_processes $WORKERS|g" /ubiquity/deploy/conf/ngx/nginx.conf
- EXPOSE 8080
- CMD /nginx/sbin/nginx -c /ubiquity/deploy/conf/ngx/nginx.conf
|