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

27
Dockerfile Normal file
View File

@@ -0,0 +1,27 @@
FROM php:8.3-apache
# Install system dependencies
RUN apt-get update && apt-get install -y \
libpng-dev \
libjpeg-dev \
libfreetype6-dev \
libzip-dev \
zip \
unzip \
libonig-dev \
libxml2-dev \
curl \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install \
pdo \
pdo_mysql \
mysqli \
mbstring \
zip \
gd \
curl \
xml \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Enable Apache mod_rewrite
RUN a2enmod rewrite