From 6d9ef885006816737fca9c57841eb582b7c12097 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Mon, 3 Jun 2024 19:29:22 -0400 Subject: [PATCH] Updates --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41ddf5f..eb71a16 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2-apache +FROM php:8.3-apache RUN apt-get update && \ apt-get install -y \ @@ -17,13 +17,13 @@ RUN apt-get update && \ RUN docker-php-ext-configure gd --with-jpeg && \ docker-php-ext-configure zip && \ docker-php-ext-install \ - pdo_sqlite \ zip \ mbstring \ exif \ pcntl \ bcmath \ xml \ + mysqli \ intl RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \