From 88c82d9439591399117dd906ca8a0829f4b71052 Mon Sep 17 00:00:00 2001 From: ale Date: Fri, 4 Jul 2025 15:25:07 -0300 Subject: [PATCH] PHP actualizado --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 55c29fc..8c8c84c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.4-fpm +FROM php:8.3-fpm # Arguments defined in docker-compose.yml ARG user @@ -12,7 +12,8 @@ RUN apt-get update && apt-get install -y \ libonig-dev \ libxml2-dev \ zip \ - unzip + unzip \ + libzip-dev # Install node RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ @@ -22,7 +23,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ RUN apt-get clean && rm -rf /var/lib/apt/lists/* # Install PHP extensions -RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd +RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd zip # Get latest Composer COPY --from=composer:latest /usr/bin/composer /usr/bin/composer