Skip to content

Instantly share code, notes, and snippets.

@odarbelaeze
Created August 17, 2017 00:02
Show Gist options
  • Save odarbelaeze/a1038aacc872e1cc3a6497c1a01c56bf to your computer and use it in GitHub Desktop.
Save odarbelaeze/a1038aacc872e1cc3a6497c1a01c56bf to your computer and use it in GitHub Desktop.
Vegas Dockerfile
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