Last active
April 18, 2017 20:45
-
-
Save roadsideseb/43eab7c22b36bc628e28aa4c6fa00d8a to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
set -ex | |
pip_args=${@:-"--help"} | |
apk add --no-cache \ | |
--virtual .build-deps \ | |
gcc \ | |
g++ \ | |
make \ | |
libc-dev \ | |
linux-headers \ | |
libffi-dev \ | |
openssh-client \ | |
libjpeg-turbo-dev \ | |
zlib-dev \ | |
postgresql-dev \ | |
libxml2-dev \ | |
libxslt-dev | |
ln -s /usr/include/locale.h /usr/include/xlocale.h | |
pip --no-cache-dir $pip_args | |
apk del .build-deps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment