|
|
@@ -1,4 +1,4 @@
|
|
|
-FROM php:8.1-fpm
|
|
|
+FROM php:8.4-fpm
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
libfreetype6-dev \
|
|
|
@@ -19,20 +19,14 @@ RUN apt-get update && apt-get install -y \
|
|
|
|
|
|
RUN apt-get install -y git vim
|
|
|
|
|
|
-RUN pecl install redis-5.3.3 && \
|
|
|
- pecl install xdebug-3.2.2 && \
|
|
|
- docker-php-ext-enable redis xdebug
|
|
|
+RUN pecl install redis
|
|
|
+RUN pecl install xdebug-3.5.0
|
|
|
+RUN docker-php-ext-enable redis xdebug
|
|
|
|
|
|
RUN export COMPOSER_HOME=/usr/local/composer && \
|
|
|
curl -sS https://getcomposer.org/installer \
|
|
|
| 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 && \
|
|
|
# curl -sL https://deb.nodesource.com/setup_11.x | bash - && \
|
|
|
# curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
|