Guest User

Untitled

a guest
Mar 22nd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. FROM alpine
  2. COPY requirements.txt /
  3. RUN apk update && apk add gcc cmake gdb python py2-pip cython-dev build-base openblas-dev --no-cache && \
  4. ln -s /usr/include/locale.h /usr/include/xlocale.h && \
  5. pip install -r requirements.txt --no-cache-dir
  6.  
  7.  
  8. numpy == 1.11.2
  9. pandas == 0.19.0
  10. scipy == 0.18.1
  11. scikit-learn == 0.18.1
  12. xgboost == 0.6a1
Add Comment
Please, Sign In to add comment