37 lines
786 B
Docker
37 lines
786 B
Docker
|
|
FROM php:8.2-fpm
|
||
|
|
|
||
|
|
# Install system dependencies
|
||
|
|
RUN apt-get update && apt-get install -y \
|
||
|
|
libpng-dev \
|
||
|
|
libjpeg-dev \
|
||
|
|
libfreetype6-dev \
|
||
|
|
libzip-dev \
|
||
|
|
unzip \
|
||
|
|
nginx \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
# Install PHP extensions
|
||
|
|
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
|
||
|
|
&& docker-php-ext-install -j$(nproc) \
|
||
|
|
gd \
|
||
|
|
mysqli \
|
||
|
|
pdo_mysql \
|
||
|
|
zip
|
||
|
|
|
||
|
|
# Configure Nginx
|
||
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
||
|
|
|
||
|
|
# Copy WordPress files
|
||
|
|
COPY . /var/www/html/
|
||
|
|
|
||
|
|
# Set proper permissions
|
||
|
|
RUN chown -R www-data:www-data /var/www/html
|
||
|
|
|
||
|
|
EXPOSE 8882
|
||
|
|
|
||
|
|
# Start Nginx and PHP-FPM
|
||
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
||
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
||
|
|
|
||
|
|
CMD ["docker-entrypoint.sh"]
|