From bf3025842c8e65308115074a260255fbc3a8e619 Mon Sep 17 00:00:00 2001 From: Naveenraj M Date: Sun, 29 Mar 2020 02:13:08 +0530 Subject: [PATCH] install node using yum --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad148de..7a71582 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,10 @@ FROM centos:7 COPY . . # Installing tools needed for rpmbuild -RUN yum install -y gcc rpm-build rpm-devel rpmlint make bash coreutils rpmdevtools which +RUN yum install -y gcc rpm-build rpm-devel rpmlint make bash coreutils rpmdevtools which nodejs # LOG: check contents -RUN pwd && ls -la +RUN pwd && ls -la && node -v # Creting rpmbuild directory tree RUN rpmdev-setuptree