Skip to content

Commit

Permalink
build: removed hard x86-64 dependency, updated xdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Dec 30, 2024
1 parent b4f0463 commit 527e14a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ RUN set -x \
&& buildDeps="libldap2-dev" \
&& apt-get update && apt-get install -y ${buildDeps} --no-install-recommends \
\
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
&& docker-php-ext-install ldap \
\
&& apt-get purge -y ${buildDeps} \
Expand Down Expand Up @@ -59,8 +58,8 @@ RUN set -ex \
&& rm -rf /var/lib/apt/lists/*

#=== Install xdebug PHP dependencies ===
RUN pecl install xdebug-3.4.0beta1 \
&& docker-php-ext-enable xdebug
RUN pecl install xdebug-3.4.0 \
&& docker-php-ext-enable xdebug

#=== php default ===
ENV PMF_TIMEZONE="Europe/Berlin" \
Expand Down

0 comments on commit 527e14a

Please sign in to comment.