Add C library to docker Add C library to docker docker docker

Add C library to docker


Add the docker commands to download, compile and install the library on your docker image.

RUN wget https://crypto.stanford.edu/pbc/files/pbc-0.5.14.tar.gz && \    tar -xvf pbc-0.5.14.tar.gz && \    cd pbc-0.5.14 && \    ./configure --prefix=$HOME/.local && \    make && make installRUN rm pbc-0.5.14.tar.gz && rm -rf pbc-0.5.14

this is of course a very simple way, you need to know how you want to compile it, and what custom flags to use.