Created
August 6, 2014 20:28
-
-
Save allanino/984ce676b021071dc9b9 to your computer and use it in GitHub Desktop.
Minimal Dockerfile for installing NuPIC
This file contains hidden or 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:14.04 | |
| RUN apt-get update | |
| # Install curl (for downloading pip) and other dependencies | |
| RUN apt-get install -y curl clang cmake git python2.7-dev python2.7 python-numpy | |
| # Install pip | |
| RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python2.7 | |
| # Install NuPIC | |
| RUN pip install nupic | |
| CMD "bin/bash" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment