From cbe5642b9d018c100c87a1186def22d1907ce633 Mon Sep 17 00:00:00 2001 From: Julio Montes Date: Fri, 8 Mar 2019 10:35:06 -0600 Subject: [PATCH] image-builder: add gcc as dependecy to generate the image gcc is required to build the binary in charge to fill out the device namespace information (matadata) into the kata containers image. Signed-off-by: Julio Montes --- image-builder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image-builder/Dockerfile b/image-builder/Dockerfile index af8674dfd4..0f10f8c8d8 100644 --- a/image-builder/Dockerfile +++ b/image-builder/Dockerfile @@ -7,4 +7,4 @@ From fedora:latest RUN [ -n "$http_proxy" ] && sed -i '$ a proxy='$http_proxy /etc/dnf/dnf.conf ; true -RUN dnf install -y qemu-img parted gdisk e2fsprogs +RUN dnf install -y qemu-img parted gdisk e2fsprogs gcc