/
home
/
pay
/
server_old
/
File Upload :
llllll
Current File: /home/pay/server_old/Dockerfile
# Use the official PHP image with Apache FROM php:8.1-apache # Install system dependencies RUN apt-get update && apt-get install -y \ git \ unzip \ libpng-dev \ libjpeg-dev \ libfreetype6-dev \ zlib1g-dev \ libzip-dev \ && docker-php-ext-configure gd --with-freetype --with-jpeg \ && docker-php-ext-install gd \ && docker-php-ext-install pdo_mysql \ && docker-php-ext-install zip # Enable Apache mod_rewrite RUN a2enmod rewrite # Set working directory WORKDIR /var/www/html # Copy existing application directory contents COPY . /var/www/html # Install Composer COPY --from=composer:latest /usr/bin/composer /usr/bin/composer # Install PHP dependencies RUN composer install --no-dev --optimize-autoloader # Set permissions RUN chown -R www-data:www-data /var/www/html/storage /var/www/html/bootstrap/cache # Expose port 80 EXPOSE 80 # Start Apache server CMD ["apache2-foreground"]
Copyright ©2k19 -
Hexid
|
Tex7ure