The line CMD ["frankenphp", "run", "--config", "/etc/caddy/Caddyfile"] in the Dockerfile prevents an application using this image from setting a custom entry point command.
Setting a custom entry point command overrides the CMD command, preventing the php app from running.
The line
CMD ["frankenphp", "run", "--config", "/etc/caddy/Caddyfile"]in theDockerfileprevents an application using this image from setting a custom entry point command.Setting a custom entry point command overrides the CMD command, preventing the php app from running.