This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') | |
| ifeq ($(uname_S),Linux) | |
| BMSDK = ./linuxbrew/.linuxbrew/include | |
| endif | |
| ifeq ($(uname_S),Darwin) | |
| BMSDK = /usr/local/include | |
| endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM amazonlinux:2 | |
| RUN yum -y update && \ | |
| yum -y groupinstall -y 'Development Tools' && \ | |
| yum -y install git zlib-devel perl-core | |
| RUN git clone --depth=1 https://github.com/openssl/openssl && \ | |
| (cd openssl && ./config no-shared --prefix=$(pwd)/usr && make install) | |