Skip to content

Commit

Permalink
pecl install xdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Mar 1, 2024
1 parent 3864b30 commit bf9e3e1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ ENV DEBCONF_NOWARNINGS=yes
# Install Memcache PHP extension
RUN apt-get update
RUN apt-get install -y unzip zlib1g zlib1g-dev libssl-dev
RUN pecl install memcache apcu
RUN docker-php-ext-enable memcache apcu
RUN pecl install memcache
RUN docker-php-ext-enable memcache

# ssh2
# Install APCu and Xdebug PHP extension
RUN pecl install apcu xdebug
RUN docker-php-ext-enable apcu xdebug

# Install SSH2 PHP extension
RUN apt-get install -y libssh2-1-dev
RUN pecl install ssh2
RUN docker-php-ext-enable ssh2
Expand Down

0 comments on commit bf9e3e1

Please sign in to comment.