From 1ac9c07e22c67a0d9cbb192332b0f0d3f62e7f2d Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Fri, 29 Jun 2018 15:24:17 +0100 Subject: [PATCH 1/2] rootfs-fedora: bump Fedora release to 28 Fedora 28 was released May 1st 2018. I have tested that the rootfs works. Fixes: #132 Signed-off-by: Stefan Hajnoczi --- rootfs-builder/fedora/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs-builder/fedora/config.sh b/rootfs-builder/fedora/config.sh index d14c0eb8c..a0ca15a31 100644 --- a/rootfs-builder/fedora/config.sh +++ b/rootfs-builder/fedora/config.sh @@ -5,7 +5,7 @@ OS_NAME="Fedora" -OS_VERSION=${OS_VERSION:-27} +OS_VERSION=${OS_VERSION:-28} MIRROR_LIST="https://mirrors.fedoraproject.org/metalink?repo=fedora-${OS_VERSION}&arch=\$basearch" From 89bca975a39db10052d9317a52d7d5717ad971f5 Mon Sep 17 00:00:00 2001 From: Jose Carlos Venegas Munoz Date: Wed, 22 Aug 2018 00:46:00 -0500 Subject: [PATCH 2/2] rootfs: dockerfile: Fix fedora 28 build. Fedora 28 container already has coreutils-single package. Also, the new fedora 28 container does not provide make by default. Signed-off-by: Jose Carlos Venegas Munoz --- rootfs-builder/fedora/Dockerfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rootfs-builder/fedora/Dockerfile.in b/rootfs-builder/fedora/Dockerfile.in index 27d7ed9d9..d99c3076c 100644 --- a/rootfs-builder/fedora/Dockerfile.in +++ b/rootfs-builder/fedora/Dockerfile.in @@ -7,7 +7,7 @@ From fedora:@OS_VERSION@ @SET_PROXY@ -RUN dnf -y update && dnf install -y git redhat-release systemd pkgconfig gcc coreutils +RUN dnf -y update && dnf install -y git redhat-release systemd pkgconfig gcc make # This will install the proper golang to build Kata components @INSTALL_GO@