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 && \
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');" && \