Last active
December 21, 2015 11:19
-
-
Save catharinejm/6298241 to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env bash | |
| set -e | |
| mkdir -p /app/vendor/openssl | |
| tar zxf openssl-1.0.1e.tar.gz | |
| cd openssl-1.0.1e | |
| ./Configure linux-x86_64 shared --prefix=/app/vendor/openssl | |
| make all install_sw |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment