Github user ottobackwards commented on a diff in the pull request:
https://github.com/apache/metron/pull/848#discussion_r153332780
--- Diff: metron-deployment/packaging/docker/ansible-docker/Dockerfile ---
@@ -14,13 +14,18 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
-FROM centos:centos6
+FROM centos:centos6.9
MAINTAINER Apache Metron
RUN yum install -y tar
RUN yum install -y wget
+# base development tools required
RUN yum groupinstall -y "Development tools"
+# newer cpp 11 support required for building node modules
+RUN wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O
/etc/yum.repos.d/devtools-2.repo
--- End diff --
yeah, thanks. Nick also pointed this out in a jira ( referring to your
steps ), i'll have this in in a moment
---