Skip to content

Instantly share code, notes, and snippets.

@tristanwietsma
Created February 6, 2014 19:29
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 tristanwietsma/8850966 to your computer and use it in GitHub Desktop.
Save tristanwietsma/8850966 to your computer and use it in GitHub Desktop.
Oscats dockerfile
# OSCATS
FROM ubuntu
MAINTAINER Tristan Wietsma twietsma@civisanalytics.com
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y build-essential
RUN apt-get install -y autoconf automake
RUN apt-get install -y libgsl0ldbl libgsl0-dev
RUN apt-get install -y libglib2.0-dev
RUN apt-get install -y pkg-config
RUN apt-get install -y python-gobject-dev
RUN apt-get install -y git
RUN git clone https://github.com/tristanwietsma/oscats.git
RUN cd oscats; ./configure --enable-python-bindings
RUN cd oscats; make install
ENV PYTHONPATH /oscats/bindings/python/.libs/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment