updated php from 8.1 to 8.4
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
FROM php:8.1-fpm
|
FROM php:8.4-fpm
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
libfreetype6-dev \
|
libfreetype6-dev \
|
||||||
@@ -19,20 +19,14 @@ RUN apt-get update && apt-get install -y \
|
|||||||
|
|
||||||
RUN apt-get install -y git vim
|
RUN apt-get install -y git vim
|
||||||
|
|
||||||
RUN pecl install redis-5.3.3 && \
|
RUN pecl install redis
|
||||||
pecl install xdebug-3.2.2 && \
|
RUN pecl install xdebug-3.5.0
|
||||||
docker-php-ext-enable redis xdebug
|
RUN docker-php-ext-enable redis xdebug
|
||||||
|
|
||||||
RUN export COMPOSER_HOME=/usr/local/composer && \
|
RUN export COMPOSER_HOME=/usr/local/composer && \
|
||||||
curl -sS https://getcomposer.org/installer \
|
curl -sS https://getcomposer.org/installer \
|
||||||
| php -- --install-dir=/usr/local/bin --filename=composer && \
|
| php -- --install-dir=/usr/local/bin --filename=composer && \
|
||||||
curl https://drupalconsole.com/installer \
|
|
||||||
-L -o /usr/local/bin/drupal && \
|
|
||||||
chmod +x /usr/local/bin/drupal && \
|
|
||||||
curl https://github.com/drush-ops/drush-launcher/releases/download/0.6.0/drush.phar \
|
|
||||||
-L -o /usr/local/bin/drush && \
|
|
||||||
chmod +x /usr/local/bin/drush
|
|
||||||
|
|
||||||
# RUN apt-get install -y curl && \
|
# RUN apt-get install -y curl && \
|
||||||
# curl -sL https://deb.nodesource.com/setup_11.x | bash - && \
|
# curl -sL https://deb.nodesource.com/setup_11.x | bash - && \
|
||||||
# curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
|
# curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
|
||||||
+1
-3
@@ -1,5 +1,3 @@
|
|||||||
version: "3.5"
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
mysql:
|
mysql:
|
||||||
image: mariadb:latest
|
image: mariadb:latest
|
||||||
@@ -27,7 +25,7 @@ services:
|
|||||||
- "6379"
|
- "6379"
|
||||||
|
|
||||||
php:
|
php:
|
||||||
build: ./Docker/php-8.1-fpm/
|
build: ./Docker/php-8.4-fpm/
|
||||||
user: ${USER_UID}:${USER_GID}
|
user: ${USER_UID}:${USER_GID}
|
||||||
volumes:
|
volumes:
|
||||||
- php-user-data:/home/${USER_UNAME}
|
- php-user-data:/home/${USER_UNAME}
|
||||||
|
|||||||
+1
-1
Submodule src_d9 updated: 11bb49e694...18dd8199a9
Reference in New Issue
Block a user