Skip to content

Instantly share code, notes, and snippets.

@allanino
Created August 6, 2014 20:28
Show Gist options
  • Select an option

  • Save allanino/984ce676b021071dc9b9 to your computer and use it in GitHub Desktop.

Select an option

Save allanino/984ce676b021071dc9b9 to your computer and use it in GitHub Desktop.
Minimal Dockerfile for installing NuPIC
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