Skip to content

Commit

Permalink
Remove unused client
Browse files Browse the repository at this point in the history
  • Loading branch information
ElisDN committed Sep 10, 2024
1 parent 601b747 commit 6a44c86
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker/development/php-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.3-cli-alpine
ENV MCRYPT_VERSION 1.0.7
ENV XDEBUG_VERSION 3.3.2

RUN apk add --no-cache mariadb-client libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git linux-headers \
RUN apk add --no-cache libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git linux-headers \
&& git clone -b $MCRYPT_VERSION --depth 1 https://github.com/php/pecl-encryption-mcrypt.git /usr/src/php/ext/mcrypt \
&& docker-php-ext-configure mcrypt \
&& git clone -b $XDEBUG_VERSION --depth 1 https://github.com/xdebug/xdebug.git /usr/src/php/ext/xdebug \
Expand Down
2 changes: 1 addition & 1 deletion docker/development/php-fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.3-fpm-alpine
ENV MCRYPT_VERSION 1.0.7
ENV XDEBUG_VERSION 3.3.2

RUN apk add --no-cache mariadb-client libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git linux-headers \
RUN apk add --no-cache libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git linux-headers \
&& git clone -b $MCRYPT_VERSION --depth 1 https://github.com/php/pecl-encryption-mcrypt.git /usr/src/php/ext/mcrypt \
&& docker-php-ext-configure mcrypt \
&& git clone -b $XDEBUG_VERSION --depth 1 https://github.com/xdebug/xdebug.git /usr/src/php/ext/xdebug \
Expand Down
2 changes: 1 addition & 1 deletion docker/production/php-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM php:8.3-cli-alpine

ENV MCRYPT_VERSION 1.0.7

RUN apk add --no-cache mariadb-client libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git \
RUN apk add --no-cache libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git \
&& git clone -b $MCRYPT_VERSION --depth 1 https://github.com/php/pecl-encryption-mcrypt.git /usr/src/php/ext/mcrypt \
&& docker-php-ext-configure mcrypt \
&& docker-php-ext-configure gd \
Expand Down
2 changes: 1 addition & 1 deletion docker/production/php-fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FROM php:8.3-fpm-alpine

ENV MCRYPT_VERSION 1.0.7

RUN apk add --no-cache mariadb-client libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git \
RUN apk add --no-cache libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev icu-dev git \
&& git clone -b $MCRYPT_VERSION --depth 1 https://github.com/php/pecl-encryption-mcrypt.git /usr/src/php/ext/mcrypt \
&& docker-php-ext-configure mcrypt \
&& docker-php-ext-configure gd \
Expand Down
2 changes: 1 addition & 1 deletion docker/testing/php-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM php:8.3-cli-alpine

ENV MCRYPT_VERSION 1.0.7

RUN apk add --no-cache mariadb-client libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev git \
RUN apk add --no-cache libjpeg-turbo-dev libpng-dev libwebp-dev freetype-dev libmcrypt-dev git \
&& git clone -b $MCRYPT_VERSION --depth 1 https://github.com/php/pecl-encryption-mcrypt.git /usr/src/php/ext/mcrypt \
&& docker-php-ext-configure mcrypt \
&& docker-php-ext-configure gd \
Expand Down

0 comments on commit 6a44c86

Please sign in to comment.