Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
felixleungsc committed May 17, 2017
1 parent 229dc22 commit 5b7279e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
@@ -0,0 +1,19 @@
FROM ubuntu

# System requirements
RUN apt-get update && apt-get install -y \
build-essential \
curl \
python3-pip \
swig \
&& rm -rf /var/lib/apt/lists/*

# Upgrade pip then install dependencies
RUN pip3 install --upgrade pip
RUN curl https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt \
| xargs -n 1 -L 1 pip3 install

# Install
RUN pip3 install \
auto-sklearn \
jupyter

0 comments on commit 5b7279e

Please sign in to comment.