Browse Source

* additional php extension moved to php-version dependency dockerfile

master
dimti 3 years ago
parent
commit
29a58620f5
  1. 9
      dockerfiles/workspace/workspace.base.Dockerfile
  2. 6
      dockerfiles/workspace/workspace73.Dockerfile
  3. 7
      dockerfiles/workspace/workspace74.Dockerfile

9
dockerfiles/workspace/workspace.base.Dockerfile

@ -287,15 +287,6 @@ RUN if [ ${INSTALL_WP_CLI} = true ]; then \
;fi
###########################################################################
# Additional PHP-extensions:
###########################################################################
USER root
RUN pecl install igbinary \
&& pecl install -a redis
###########################################################################
# Node / NVM:
###########################################################################

6
dockerfiles/workspace/workspace73.Dockerfile

@ -4,3 +4,9 @@ ARG PHP_VERSION=7.3
FROM laradock/workspace:latest-${PHP_VERSION}
INCLUDE+ ./workspace.base.Dockerfile
###########################################################################
# Additional PHP-extensions:
###########################################################################
RUN pecl install -a redis

7
dockerfiles/workspace/workspace74.Dockerfile

@ -4,3 +4,10 @@ ARG PHP_VERSION=7.4
FROM laradock/workspace:latest-${PHP_VERSION}
INCLUDE+ ./workspace.base.Dockerfile
###########################################################################
# Additional PHP-extensions:
###########################################################################
RUN pecl install igbinary \
&& pecl install -a redis
Loading…
Cancel
Save