Dockerfile Copy Permission Error
User # Use the official PHP image with Apache FROM php:8.3-apache # Install PHP extensions and enable necessary Apache modules RUN apt-get update && apt-get install -y libpng-dev libjpeg-dev libfreetype6-dev && docker-php-ext-configure gd –with-freetype –with-jpeg && docker-php-ext-install gd pdo pdo_mysql && a2enmod rewrite # Install Composer COPY –from=composer:latest /usr/bin/composer /usr/bin/composer # Set the working directory […]