Skip to content

Instantly share code, notes, and snippets.

@pentschev
Created April 15, 2019 10:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pentschev/dcbe78364640f3e143795f03c6faaed8 to your computer and use it in GitHub Desktop.
Save pentschev/dcbe78364640f3e143795f03c6faaed8 to your computer and use it in GitHub Desktop.
Dask dev build Dockerfile
FROM python:3
ENV PYTHON 3.7
ENV NUMPY 1.16.2
ENV UPSTREAM_DEV 1
ENV TEST true
ENV LINT true
ENV COVERAGE false
ENV PARALLEL true
ENV XTRATESTARGS ''
ENV TEST_IMPORTS false
ENV NUMPY_EXPERIMENTAL_ARRAY_FUNCTION 1
ENV PATH /root/miniconda/bin:$PATH
ENV BOTO_CONFIG=/dev/null
RUN cd /usr/src && git clone https://github.com/pentschev/dask.git
RUN cd /usr/src/dask && git checkout reenable-development-build
RUN cd /usr/src/dask && /bin/bash -c "source ./continuous_integration/travis/install.sh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment