PHP 8.4 Alpine

PHP 8.4 released on November 21, 2024 and take some time for Linux distros officially to ship the latest PHP 8.4 on their packages.

This image base on the Alpine 3.20 variant of official PHP docker image.

Dockerfile commands:

FROM php:8.4-alpine

RUN mkdir /app
WORKDIR /app

ENV HOME=/app
ENV LISTEN_PORT=8000
EXPOSE 8000

CMD [ "php", "-a" ]

Changelogs:

  • 2024-12-07: initial release.