latestThis image is based off the the official php docker image.
This image is automatically updated every 7 days and includes a step to perform an apt update/upgrade to address security fixes and/or vulnerability remediations.
As you can see from the dockerfile below, this build includes a custom internal root certificate authority to trust custom resources. Realistically, this impact should be minimal, as the certificates generated from this CA are not publicly used. However, this may be a valid concern/issue for you and/or your organization. If you have any issue with this, please don't use this image. You can use the Dockerfile below to build/maintain your own image without the included root certificate authority.
FROM docker.io/library/php:apache
LABEL org.opencontainers.image.authors="The_Spider <[email protected]>"
LABEL org.opencontainers.image.title="php-mysqli"
LABEL org.opencontainers.image.description="Docker container for php with mysqli served by apache"
LABEL org.opencontainers.image.base.name=""docker.io/library/php:apache"
COPY test-chamber-13.lan.root.crt /usr/local/share/ca-certificates/test-chamber-13.lan.root.crt
RUN apt-get update && \
apt-get upgrade -y && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* && \
docker-php-ext-install mysqli
Content type
Image
Digest
sha256:fd8194557…
Size
173.5 MB
Last updated
7 days ago
docker pull thespider/php-mysqli