Skip to content

Instantly share code, notes, and snippets.

@tnaoi
Created November 18, 2015 19:37
Show Gist options
  • Save tnaoi/433afd454807370fde4c to your computer and use it in GitHub Desktop.
Save tnaoi/433afd454807370fde4c to your computer and use it in GitHub Desktop.
FROM ubuntu:15.04
MAINTAINER Taro Naoi <taronaoi@gmail.com>
RUN apt-get install -y software-properties-common && \
apt-add-repository "deb http://us.archive.ubuntu.com/ubuntu/ vivid universe multiverse"
RUN apt-get update && apt-get install -y \
git \
vim \
wget \
g++ \
freeglut3-dev \
libglu1-mesa-dev \
libglew-dev \
nvidia-opencl-dev \
xvfb \
python2.7-dev && \
wget https://bootstrap.pypa.io/get-pip.py && \
python2.7 get-pip.py && \
pip install pyopenworm numpy
RUN git clone https://github.com/openworm/sibernetic && \
git clone https://github.com/openworm/movement_validation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment