Skip to content

Commit

Permalink
feat(ext): add yaml extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrtak-CZ committed Apr 29, 2024
1 parent f9db4ae commit c800289
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,16 +104,16 @@ RUN set -x \
&& ln -sf /dev/stdout /var/log/unit.log

RUN apt-get update
RUN apt-get install -y zlib1g-dev libfreetype6-dev libjpeg62-turbo-dev libpng-dev libicu-dev libpq-dev libxml++2.6-dev libxslt1-dev libzip-dev wget ca-certificates ssh git iputils-ping iproute2 libgpgme-dev
RUN apt-get install -y libyaml-dev zlib1g-dev libfreetype6-dev libjpeg62-turbo-dev libpng-dev libicu-dev libpq-dev libxml++2.6-dev libxslt1-dev libzip-dev wget ca-certificates ssh git iputils-ping iproute2 libgpgme-dev

ARG XDEBUG_VERSION=3.3.2

RUN docker-php-ext-configure gd --with-freetype --with-jpeg
RUN docker-php-ext-install gd bcmath intl opcache pdo_pgsql pgsql soap sockets xsl zip
RUN docker-php-ext-configure pcntl --enable-pcntl
RUN docker-php-ext-install pcntl
RUN pecl install redis igbinary gnupg
RUN docker-php-ext-enable redis igbinary gnupg
RUN pecl install redis igbinary gnupg yaml
RUN docker-php-ext-enable redis igbinary gnupg yaml
RUN pecl install xdebug-${XDEBUG_VERSION}

ENV PHP_DATE_TIMEZONE UTC
Expand Down

0 comments on commit c800289

Please sign in to comment.