From 0241680a998140a0173a690c2a7f4ad107c69d92 Mon Sep 17 00:00:00 2001 From: Naveenraj M Date: Wed, 1 Apr 2020 00:27:38 +0530 Subject: [PATCH] document Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b7a0d76..41d8e37 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ -# Using CentOS 7 with Node 12 as base image to support rpmbuild +# Using CentOS 7 as base image to support rpmbuild (packages will be Dist el7) FROM centos:7 # Copying all contents of rpmbuild repo inside container COPY . . -# Installing tools needed for rpmbuild , depends on specfile +# Installing tools needed for rpmbuild , +# depends on BuildRequires field in specfile, (TODO: take as input & install) RUN yum install -y rpm-build rpmdevtools gcc make coreutils python # Setting up node to run our JS file