FROM php:8.4-fpm
# Install dependencies
RUN apt-get update && apt-get install -y \
git \
curl \
zip \
unzip
# Install PHP extensions
RUN docker-php-ext-install pdo pdo_mysql
# Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
WORKDIR /workspace
|