From e7239d73afbe6d18a54210796de61d53a1596d32 Mon Sep 17 00:00:00 2001 From: liyingjun Date: Wed, 24 Jan 2018 22:10:42 -0500 Subject: [PATCH] Add missing packages for centos Dockerfile 'make git gcc' are needed to build agent Fixes #43 Signed-off-by: liyingjun liyingjun1988@gmail.com --- rootfs-builder/centos/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/rootfs-builder/centos/Dockerfile b/rootfs-builder/centos/Dockerfile index fc96ef0a..082be869 100644 --- a/rootfs-builder/centos/Dockerfile +++ b/rootfs-builder/centos/Dockerfile @@ -1 +1,2 @@ FROM centos:7 +RUN yum install -y make git gcc