From 317ea0356e3a8ac5fcccee02243ae4e69da601ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Santos?= Date: Thu, 25 Jan 2024 18:06:35 +0100 Subject: [PATCH] fix: build failing to run --- docker/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index a2fa59c1..c372469b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,13 +2,11 @@ ARG PHP=8.1 FROM php:${PHP}-cli-alpine RUN apk update && apk add \ - zip libzip-dev icu-dev git \ + zip libzip-dev icu-dev git -RUN docker-php-ext-configure zip intl RUN docker-php-ext-install zip intl -RUN docker-php-ext-enable zip intl -RUN apk add --no-cache linux-headers +RUN apk add --no-cache linux-headers autoconf build-base RUN pecl install xdebug RUN docker-php-ext-enable xdebug COPY --from=composer:2 /usr/bin/composer /usr/bin/composer