diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..dd31aa28b5 --- /dev/null +++ b/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