Github user JonZeolla commented on a diff in the pull request:
https://github.com/apache/metron/pull/848#discussion_r153326885
--- 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 --
Please upgrade to devtoolset-4.
```
yum -y install centos-release-scl
yum -y install devtoolset-4-gcc devtoolset-4-gcc-c++ devtoolset-4-binutils
```
or similar.
---