2026-04-01 10:55:26 -07:00
|
|
|
FROM almalinux/10-base
|
2026-04-01 10:08:00 -07:00
|
|
|
ARG PHPVER=83
|
|
|
|
|
|
|
|
|
|
# Install repos, update, install only needed packages (no httpd/mod_ssl), clean up in one layer
|
|
|
|
|
RUN dnf install -y \
|
2026-04-01 10:55:26 -07:00
|
|
|
https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm \
|
|
|
|
|
https://rpms.remirepo.net/enterprise/remi-release-10.rpm && \
|
2026-04-01 10:08:00 -07:00
|
|
|
dnf update -y && \
|
2026-04-01 11:11:10 -07:00
|
|
|
dnf install -y openssl wget procps cronie iproute postgresql-devel microdnf less git \
|
2026-04-01 10:08:00 -07:00
|
|
|
nano rsync unzip zip mariadb bind-utils jq patch nc tree dos2unix fcgi && \
|
|
|
|
|
dnf clean all && \
|
|
|
|
|
rm -rf /var/cache/dnf /usr/share/doc /usr/share/man /usr/share/locale/*
|
|
|
|
|
|
|
|
|
|
# Copy scripts into the image and set permissions
|
|
|
|
|
COPY ./scripts/ /scripts/
|
|
|
|
|
RUN chmod +x /scripts/*
|
|
|
|
|
|
2026-04-01 15:48:58 -07:00
|
|
|
# Install ImageMagick from EPEL with HEIC/HEIF/AVIF support
|
|
|
|
|
RUN dnf install -y ImageMagick ImageMagick-libs ImageMagick-heic && \
|
2026-04-01 10:15:15 -07:00
|
|
|
dnf clean all
|
|
|
|
|
|
2026-04-01 10:08:00 -07:00
|
|
|
# Create needed dirs, install PHP, clean up (no SSL cert, no httpd)
|
|
|
|
|
RUN mkdir -p /run/php-fpm/ && \
|
|
|
|
|
/scripts/install-php$PHPVER.sh && \
|
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
|
|
|
|
|
# Download and install wp-cli
|
|
|
|
|
RUN curl -L -o /usr/local/bin/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \
|
|
|
|
|
chmod +x /usr/local/bin/wp
|
|
|
|
|
|
|
|
|
|
# Download and install Composer
|
|
|
|
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && \
|
|
|
|
|
chmod +x /usr/local/bin/composer
|
|
|
|
|
|
|
|
|
|
# Copy configs (PHP only, no Apache configs)
|
|
|
|
|
COPY ./configs/prod-php.ini /etc/php.ini
|
|
|
|
|
COPY ./configs/mariadb.repo /etc/yum.repos.d/
|
|
|
|
|
|
|
|
|
|
# Set up cron job for log rotation
|
|
|
|
|
RUN echo "15 */12 * * * root /scripts/log-rotate.sh" >> /etc/crontab
|
|
|
|
|
|
|
|
|
|
EXPOSE 9000
|
|
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=60s --retries=3 \
|
|
|
|
|
CMD SCRIPT_FILENAME=/fpm-ping SCRIPT_NAME=/fpm-ping REQUEST_METHOD=GET cgi-fcgi -bind -connect 127.0.0.1:9000 | grep -q pong || exit 1
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/scripts/entrypoint-fpm.sh" ]
|