Skip to content

Instantly share code, notes, and snippets.

@randerzander
Created February 1, 2017 00:09
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 randerzander/8abb432b85b6a1ee432091bcb33a9f50 to your computer and use it in GitHub Desktop.
Save randerzander/8abb432b85b6a1ee432091bcb33a9f50 to your computer and use it in GitHub Desktop.
FROM centos
# minifi-cpp build
RUN yum install -y git
RUN yum install -y wget
RUN yum install -y epel-release
RUN yum groupinstall -y 'Development Tools'
RUN yum install -y cmake
RUN yum install -y boost-devel boost-static libxml2-static libxml2-devel libuuid-devel leveldb-devel
RUN git clone https://github.com/randerzander/nifi-minifi-cpp
RUN cd nifi-minifi-cpp; mkdir build; cd build; cmake ..; make package
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment