From 8fe64058aaef5b704f54ab03e87e5496c18c4e55 Mon Sep 17 00:00:00 2001 From: Archana Shinde Date: Tue, 19 Mar 2019 14:34:14 -0700 Subject: [PATCH] rootfs: Include chrony in the Dockerfile images Add chrony to distro Dockerfile. Signed-off-by: Archana Shinde --- rootfs-builder/centos/Dockerfile.in | 2 +- rootfs-builder/clearlinux/Dockerfile.in | 2 +- rootfs-builder/debian/Dockerfile.in | 2 +- rootfs-builder/euleros/Dockerfile.in | 2 +- rootfs-builder/fedora/Dockerfile.in | 2 +- rootfs-builder/ubuntu/Dockerfile.in | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rootfs-builder/centos/Dockerfile.in b/rootfs-builder/centos/Dockerfile.in index 5897d0c8ff..4e89be128a 100644 --- a/rootfs-builder/centos/Dockerfile.in +++ b/rootfs-builder/centos/Dockerfile.in @@ -7,7 +7,7 @@ From centos:@OS_VERSION@ @SET_PROXY@ -RUN yum -y update && yum install -y git make gcc coreutils libseccomp libseccomp-devel +RUN yum -y update && yum install -y git make gcc coreutils libseccomp libseccomp-devel chrony # This will install the proper golang to build Kata components @INSTALL_GO@ diff --git a/rootfs-builder/clearlinux/Dockerfile.in b/rootfs-builder/clearlinux/Dockerfile.in index 3634282ad0..ff5164b795 100644 --- a/rootfs-builder/clearlinux/Dockerfile.in +++ b/rootfs-builder/clearlinux/Dockerfile.in @@ -7,7 +7,7 @@ From fedora:27 @SET_PROXY@ -RUN dnf -y update && dnf install -y git systemd pkgconfig gcc coreutils libseccomp libseccomp-devel +RUN dnf -y update && dnf install -y git systemd pkgconfig gcc coreutils libseccomp libseccomp-devel chrony # This will install the proper golang to build Kata components @INSTALL_GO@ diff --git a/rootfs-builder/debian/Dockerfile.in b/rootfs-builder/debian/Dockerfile.in index f4eb4ca216..493df64307 100644 --- a/rootfs-builder/debian/Dockerfile.in +++ b/rootfs-builder/debian/Dockerfile.in @@ -7,7 +7,7 @@ from debian:@OS_VERSION@ # RUN commands -RUN apt-get update && apt-get install -y curl wget systemd debootstrap git build-essential +RUN apt-get update && apt-get install -y curl wget systemd debootstrap git build-essential chrony # This will install the proper golang to build Kata components @INSTALL_GO@ diff --git a/rootfs-builder/euleros/Dockerfile.in b/rootfs-builder/euleros/Dockerfile.in index 03a0a77e71..4ff79ba280 100644 --- a/rootfs-builder/euleros/Dockerfile.in +++ b/rootfs-builder/euleros/Dockerfile.in @@ -7,7 +7,7 @@ FROM euleros:@OS_VERSION@ @SET_PROXY@ -RUN yum -y update && yum install -y yum git make gcc coreutils +RUN yum -y update && yum install -y yum git make gcc coreutils chrony # This will install the proper golang to build Kata components @INSTALL_GO@ diff --git a/rootfs-builder/fedora/Dockerfile.in b/rootfs-builder/fedora/Dockerfile.in index 08ede4313f..19e10adde6 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 make libseccomp libseccomp-devel +RUN dnf -y update && dnf install -y git redhat-release systemd pkgconfig gcc make libseccomp libseccomp-devel chrony # This will install the proper golang to build Kata components @INSTALL_GO@ diff --git a/rootfs-builder/ubuntu/Dockerfile.in b/rootfs-builder/ubuntu/Dockerfile.in index b1be9dbbe2..d4b10490b2 100644 --- a/rootfs-builder/ubuntu/Dockerfile.in +++ b/rootfs-builder/ubuntu/Dockerfile.in @@ -11,7 +11,7 @@ from ubuntu:@OS_VERSION@ # Install any package need to create a rootfs (package manager, extra tools) # RUN commands -RUN apt-get update && apt-get install -y curl wget systemd debootstrap git build-essential +RUN apt-get update && apt-get install -y curl wget systemd debootstrap git build-essential chrony # This will install the proper golang to build Kata components @INSTALL_GO@