Update and rename dockerfile to Dockerfile

This commit is contained in:
2025-06-18 11:07:53 -06:00
committed by GitHub
parent 1bd0ee4d5c
commit 428a428d5f

View File

@@ -1,6 +1,6 @@
FROM php:8.3-apache FROM php:8.3-apache
# Install commonly used PHP extensions # Install system dependencies
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
libpng-dev \ libpng-dev \
libjpeg-dev \ libjpeg-dev \
@@ -11,6 +11,7 @@ RUN apt-get update && apt-get install -y \
libonig-dev \ libonig-dev \
libxml2-dev \ libxml2-dev \
curl \ curl \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install \ && docker-php-ext-install \
pdo \ pdo \
pdo_mysql \ pdo_mysql \
@@ -19,7 +20,8 @@ RUN apt-get update && apt-get install -y \
zip \ zip \
gd \ gd \
curl \ curl \
xml xml \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Enable Apache mod_rewrite # Enable Apache mod_rewrite
RUN a2enmod rewrite RUN a2enmod rewrite