openssl - compiling in the docker ubuntu
To setup openSSL run the following commands
1. docker run -it ubuntu /bin/bash
2. apt-get install git
3. apt install g++
4. apt install build-essential
5. git clone https://github.com/appcoreopc/openssl.git
6. ./config --prefix=/opt/openssl --openssldir=/opt/openssl enable-ec_nistp_64_gcc_128
7. make depend
8. make
Comments