-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (30 loc) · 809 Bytes
/
Dockerfile
File metadata and controls
34 lines (30 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# vim:set ft=dockerfile:
FROM slothai/numpy:1.15.0
# Metadata as defined at http://label-schema.org
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.name="Terminal 1 Machine Learning Base" \
org.label-schema.vcs-url="https://github.com/terminal1/docker-ml" \
org.label-schema.vendor="Terminal 1 <3it@terminal1.co>" \
org.label-schema.schema-version="1.0"
RUN apk add --no-cache \
cmake \
freetype-dev \
g++ \
gcc \
libexecinfo-dev \
libpng-dev \
make \
musl-dev \
py-virtualenv
RUN pip install --upgrade \
pip \
jupyter==1.0.0 \
scipy==1.0.1 \
pandas==0.23.3 \
scikit-learn==0.19.2 \
xgboost==0.72.1 \
lightgbm==2.1.2 \
matplotlib==2.2.2