Merge pull request #12 from jkaninda/8.2

8.2
This commit is contained in:
2022-10-28 15:47:40 +02:00
committed by GitHub
2 changed files with 7 additions and 11 deletions

View File

@@ -1,10 +1,10 @@
FROM php:8.1.10-fpm FROM php:8.2.0RC5-fpm
ARG WORKDIR=/var/www/html ARG WORKDIR=/var/www/html
ENV DOCUMENT_ROOT=${WORKDIR} ENV DOCUMENT_ROOT=${WORKDIR}
ENV LARAVEL_PROCS_NUMBER=1 ENV LARAVEL_PROCS_NUMBER=1
ENV DOMAIN=_ ENV DOMAIN=_
ENV CLIENT_MAX_BODY_SIZE=15M ENV CLIENT_MAX_BODY_SIZE=15M
ENV NODE_VERSION=16.x ENV NODE_VERSION=17.x
# Install system dependencies # Install system dependencies
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
git \ git \
@@ -26,9 +26,9 @@ RUN apt-get update && apt-get install -y \
nano \ nano \
cron cron
RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION} | bash - #RUN curl -sL https://deb.nodesource.com/setup_${NODE_VERSION} | bash -
# Install Node # Install Node
RUN apt-get install -y nodejs #RUN apt-get install -y nodejs
# Install nginx # Install nginx
RUN apt-get update && apt-get install -y nginx RUN apt-get update && apt-get install -y nginx
@@ -66,11 +66,8 @@ RUN docker-php-ext-install pdo_mysql
RUN docker-php-ext-install pdo_pgsql RUN docker-php-ext-install pdo_pgsql
# Get latest Composer # Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
# Install Laravel Envoy
RUN composer global require "laravel/envoy=~1.0"
# Set working directory # Set working directory
WORKDIR $WORKDIR WORKDIR $WORKDIR

View File

@@ -12,7 +12,7 @@
## Specifications: ## Specifications:
* PHP 8.1 / 8.0 / 7.4 / 7.2 * PHP 8.2 / 8.1 / 8.0 / 7.4 / 7.2
* Composer * Composer
* OpenSSL PHP Extension * OpenSSL PHP Extension
* XML PHP Extension * XML PHP Extension
@@ -27,7 +27,6 @@
* Memcached * Memcached
* Laravel Cron Job * Laravel Cron Job
* Laravel Schedule * Laravel Schedule
* Laravel Envoy
* Supervisord * Supervisord
* Nodejs * Nodejs
* NPM * NPM