Search code examples
dockerdockerfiledockerhub

Drawbacks to alpine images in dockerhub


Are there any drawbacks to using alpine docker images? Why even have other images when you have alpine? I find myself mostly using alpine images since they are so fast to pull.


Solution

  • Most Linux use libc for the C library, while Alpine uses musl. You can sometimes encounter subtle bugs because of that. Keep that in mind if something weird happens.

    That being said, I mostly use Alpine for my containers