mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-14 20:04:21 +01:00
Add chrony to distro Dockerfile. Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
14 lines
334 B
Docker
14 lines
334 B
Docker
#
|
|
# Copyright (c) 2018 SUSE
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# NOTE: OS_VERSION is set according to config.sh
|
|
from debian:@OS_VERSION@
|
|
|
|
# RUN commands
|
|
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@
|
|
|