2026-04-01 10:55:26 -07:00
|
|
|
FROM almalinux/10-base
|
2026-04-01 10:08:00 -07:00
|
|
|
|
|
|
|
|
# Install Apache and minimal dependencies (no PHP at all)
|
|
|
|
|
RUN dnf install -y \
|
2026-04-01 10:55:26 -07:00
|
|
|
https://dl.fedoraproject.org/pub/epel/epel-release-latest-10.noarch.rpm && \
|
2026-04-01 10:08:00 -07:00
|
|
|
dnf update -y && \
|
2026-04-01 11:11:10 -07:00
|
|
|
dnf install -y httpd mod_ssl openssl iproute cronie procps curl && \
|
2026-04-01 10:08:00 -07:00
|
|
|
dnf clean all && \
|
|
|
|
|
rm -rf /var/cache/dnf /usr/share/doc /usr/share/man /usr/share/locale/*
|
|
|
|
|
|
|
|
|
|
# Copy scripts and set permissions
|
|
|
|
|
COPY ./scripts/detect-memory.sh /scripts/detect-memory.sh
|
|
|
|
|
COPY ./scripts/create-apache-mpm-config.sh /scripts/create-apache-mpm-config.sh
|
|
|
|
|
COPY ./scripts/log-rotate.sh /scripts/log-rotate.sh
|
|
|
|
|
COPY ./scripts/entrypoint-shared-httpd.sh /scripts/entrypoint-shared-httpd.sh
|
|
|
|
|
COPY ./scripts/tune-mpm.sh /scripts/tune-mpm.sh
|
|
|
|
|
RUN chmod +x /scripts/*
|
|
|
|
|
|
|
|
|
|
# Generate self-signed SSL cert (same as main CAC image)
|
|
|
|
|
RUN openssl req -newkey rsa:2048 -nodes \
|
|
|
|
|
-keyout /etc/pki/tls/private/localhost.key \
|
|
|
|
|
-x509 -days 3650 -subj "/CN=localhost" \
|
|
|
|
|
-out /etc/pki/tls/certs/localhost.crt
|
|
|
|
|
|
|
|
|
|
# Copy Apache configs
|
|
|
|
|
COPY ./configs/remote_ip.conf /etc/httpd/conf.d/
|
|
|
|
|
COPY ./configs/default-index.conf /etc/httpd/conf.d/
|
|
|
|
|
|
|
|
|
|
# Create vhosts directory (will be volume-mounted from host)
|
|
|
|
|
RUN mkdir -p /etc/httpd/conf.d/vhosts
|
|
|
|
|
|
|
|
|
|
# Set up cron job for log rotation
|
|
|
|
|
RUN echo "15 */12 * * * root /scripts/log-rotate.sh" >> /etc/crontab
|
|
|
|
|
|
|
|
|
|
EXPOSE 80 443
|
|
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=60s --retries=3 \
|
|
|
|
|
CMD curl -sfk https://localhost/ping || exit 1
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT [ "/scripts/entrypoint-shared-httpd.sh" ]
|