I want to build kernel modules in Alpine; I know how to do it in Ubuntu.
In Ubuntu, I used to install kernel headers by running:
apt install -y build-essential linux-headers-$(uname -r)
What is the equivalent in Alpine?
I searched on the web and Github user progrium wrote a comment that the equivalent for build-essential is build-base, but what about the linux-headers-$(uname -r) ?