-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add debug symbol version #879
Comments
There are risks to enable |
Adding php/Dockerfile-debian.template Line 183 in d367f7f
It would be interesting/useful to add something like |
Yes, In my local(alpine php-fpm) single php binary increased from 15M to 51M, the total size will increase 36*3 = 108M. |
can't we just remove the |
Hello, since the debug images from @csandanov are no longer maintained, I'd like to again ask about the possibility of having official ones. The latest reason against it I found is this comment from @tianon about already long build times. I fail to understand why exactly it's an issue. If you properly prioritize the tasks and have the non-debug images built and published first (since admittedly the debug images are less important), longer build time shouldn't really matter in my opinion. So what's the problem? |
It is not just the The build system is not designed to handle special prioritizing of tags within one image repo over other tags in the same repo (or even across image repos). The only ordering of builds is dependency based ( Since each architecture builds at differing speeds, a separate job called See https://github.com/docker-library/oi-janky-groovy for the groovy generators that create the jobs. See also our FAQ repo: https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what |
Debug symbols would be extremely useful for the ability to attach to running PHP instances with The debug symbols don't even need to be included in the images; Debian provides their debug symbols in separate
The build process of the PHP docker images could generate these debug files and e.g. host them on a web server, where people could download them as needed. |
Closing via #1364 (which is as close as we plan to get to this) |
It will be useful when investigating PHP segmentation. For now, we have to build a custom image for this purpose. What do you think about it?
The text was updated successfully, but these errors were encountered: