ARG ALPINE_VERSION=3.21 FROM alpine:${ALPINE_VERSION} ENV TZ=Asia/Shanghai LABEL Maintainer="Tim de Pater " LABEL Description="Lightweight container with Nginx 1.26 & PHP 8.4 based on Alpine Linux." # 重新声明ARG变量,使其在FROM之后的阶段可用 ARG ALPINE_VERSION # Setup document root WORKDIR /var/www/html # Install packages and remove default server definition RUN echo "https://dl-cdn.alpinelinux.org/alpine/v${ALPINE_VERSION}/community" >> /etc/apk/repositories && \ apk update && apk add --no-cache \ curl \ nginx \ php84 \ php84-ctype \ php84-curl \ php84-dom \ php84-fileinfo \ php84-fpm \ php84-gd \ php84-intl \ php84-mbstring \ php84-mysqli \ php84-opcache \ php84-openssl \ php84-phar \ php84-session \ php84-tokenizer \ php84-xml \ php84-xmlreader \ php84-xmlwriter \ supervisor \ expect \ procps \ openssh \ openssh-sftp-server \ && cp /usr/share/zoneinfo/$TZ /etc/localtime \ && echo "$TZ" > /etc/timezone \ && rm -rf /var/cache/apk/* RUN ln -s /usr/bin/php84 /usr/bin/php COPY flusherp2p-alpine.sh /usr/bin/flusherp2p-alpine.sh RUN chmod +x /usr/bin/flusherp2p-alpine.sh # Configure nginx - http COPY config/nginx.conf /etc/nginx/nginx.conf # Configure nginx - default server COPY config/conf.d /etc/nginx/conf.d/ # Configure PHP-FPM ENV PHP_INI_DIR /etc/php84 COPY config/fpm-pool.conf ${PHP_INI_DIR}/php-fpm.d/www.conf COPY config/php.ini ${PHP_INI_DIR}/conf.d/custom.ini # Configure supervisord COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf # Make sure files/folders needed by the processes are accessable when they run under the nobody user RUN chown -R nobody:nobody /var/www/html /run /var/lib/nginx /var/log/nginx # Switch to use a non-root user from here on USER nobody # Add application COPY --chown=nobody src/ /var/www/html/ # Expose the port nginx is reachable on EXPOSE 8080 # Let supervisord start nginx & php-fpm CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] # Configure a healthcheck to validate that everything is up&running HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1