Skip to content

Instantly share code, notes, and snippets.

@minrk
Created January 9, 2015 04:19
Show Gist options
  • Save minrk/88b7d99c378db524c3e1 to your computer and use it in GitHub Desktop.
Save minrk/88b7d99c378db524c3e1 to your computer and use it in GitHub Desktop.
FROM ubuntu:latest
# install python, pip, npm
RUN apt-get update && apt-get -y install python3 python3-pip npm nodejs-legacy git
# install less with npm
RUN npm install -g less
# latest pip, wheel (invoke for css sourcemaps)
RUN pip3 install --upgrade pip wheel invoke
# build IPython wheel
RUN pip3 wheel git+https://github.com/ipython/ipython#egg=ipython
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment