This commit is contained in:
Ryan Prather 2024-06-03 19:29:22 -04:00
parent 3db0e357c6
commit 6d9ef88500

View File

@ -1,4 +1,4 @@
FROM php:8.2-apache FROM php:8.3-apache
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y \ apt-get install -y \
@ -17,13 +17,13 @@ RUN apt-get update && \
RUN docker-php-ext-configure gd --with-jpeg && \ RUN docker-php-ext-configure gd --with-jpeg && \
docker-php-ext-configure zip && \ docker-php-ext-configure zip && \
docker-php-ext-install \ docker-php-ext-install \
pdo_sqlite \
zip \ zip \
mbstring \ mbstring \
exif \ exif \
pcntl \ pcntl \
bcmath \ bcmath \
xml \ xml \
mysqli \
intl intl
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \ RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \