Created
January 9, 2015 04:19
-
-
Save minrk/88b7d99c378db524c3e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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