I wanted to install paramiko in my docker container (using image python:3.7-alpine) and I can't do it.

I would like to add that locally I can install paramiko normally.
Can somebody told me how I can use paramiko in docker?
It depends on the base docker image you are using. It looks like you need to apt-get install make or apk add make or equivalent for that distro image (and then possibly more stuff).
@ploxiln you're right, thanks :)
Most helpful comment
It depends on the base docker image you are using. It looks like you need to
apt-get install makeorapk add makeor equivalent for that distro image (and then possibly more stuff).