Created
August 17, 2017 00:02
-
-
Save odarbelaeze/a1038aacc872e1cc3a6497c1a01c56bf to your computer and use it in GitHub Desktop.
Vegas Dockerfile
This file contains 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:16.04 | |
RUN apt-get update -q -y | |
RUN apt-get install -q -y libhdf5-dev libjsoncpp-dev | |
RUN apt-get install -q -y cmake build-essential | |
ADD . /vegas | |
RUN mkdir /vegas/build | |
WORKDIR /vegas/build | |
RUN cmake ../compilers/linux && make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment