Last active
March 15, 2018 03:25
-
-
Save yimeng/ab094d9431efc456b1b58a8e435dbb03 to your computer and use it in GitHub Desktop.
JR Risk control docker files
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 alpine | |
| COPY requirements.txt / | |
| RUN apk update && apk add gcc cmake gdb python py2-pip cython-dev build-base openblas-dev --no-cache && \ | |
| ln -s /usr/include/locale.h /usr/include/xlocale.h && \ | |
| pip install -r requirements.txt --no-cache-dir | |
| numpy == 1.11.2 | |
| pandas == 0.19.0 | |
| scipy == 0.18.1 | |
| scikit-learn == 0.18.1 | |
| xgboost == 0.6a1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment