update dependencies for docker container

This commit is contained in:
Joseph D'Souza 2026-02-10 16:29:36 +01:00
parent ea0951ba85
commit 20b3889b2d

View File

@ -9,6 +9,8 @@ RUN apt-get update && apt-get install -y \
git \
curl \
libpng-dev \
libjpeg-dev \
libfreetype6-dev \
libonig-dev \
libxml2-dev \
zip \
@ -17,7 +19,8 @@ RUN apt-get update && apt-get install -y \
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Install PHP extensions
# Configure and Install PHP extensions
RUN docker-php-ext-configure gd --with-freetype --with-jpeg
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd
# Get latest Composer