Created
November 18, 2015 19:37
-
-
Save tnaoi/433afd454807370fde4c to your computer and use it in GitHub Desktop.
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:15.04 | |
MAINTAINER Taro Naoi <[email protected]> | |
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