Add docker/7.2-apache/Dockerfile
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
colin 2024-11-13 07:49:31 -05:00
parent 0dcb7e3969
commit daf7daa810
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
# Use PHP 7.2 with Apache
FROM php:7.2-apache
# Install OS dependencies
RUN apt-get update && apt-get install -y \
libfreetype6-dev \
libjpeg62-turbo-dev \
libpng-dev \
libzip-dev \
zlib1g-dev \
vim \
libicu-dev \
fcgiwrap \
mariadb-client \
ca-certificates \
curl \
git && \
rm -rf /var/lib/apt/lists/*
# Enable and configure PHP modules
RUN docker-php-ext-configure intl && \
docker-php-ext-install intl && \
docker-php-ext-configure gd --with-freetype --with-jpeg && \
docker-php-ext-install -j$(nproc) gd && \
docker-php-ext-install mysqli zip pdo_mysql bcmath && \
docker-php-ext-install opcache
# Set up sessions directory with appropriate permissions
RUN mkdir /var/www/sessions && \
chmod 777 /var/www/sessions
# Enable Apache mod_rewrite
RUN a2enmod rewrite