dougbtv / docker-asterisk

Some dockerfiles for whipping up an asterisk server
283 stars 135 forks source link

speeding up docker image building #77

Closed mimusica closed 4 years ago

mimusica commented 4 years ago

modify the following lines in your dockerfile RUN make ...

This works on debian based systems, I'm not that familiar with red hat distributions.

RUN make -j$(nproc)

This way, the make command will utilize all available cpu cores on your machine and speed up your build process significantly

mimusica commented 4 years ago

I fixed this in my pull request. Closing this