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