mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-20 19:38:40 +00:00
To simplify maintaince, create dockerfiles based on templates. This way when golang version is updated it will be done in one place versions.txt. This also allow to allways intall the same version of golang in any dockerfile. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
16 lines
482 B
Bash
16 lines
482 B
Bash
# This is a configuration file add extra variables to
|
|
# be used by build_rootfs() from rootfs_lib.sh the variables will be
|
|
# loaded just before call the function.
|
|
|
|
# Here there are a couple of variables you may need.
|
|
# Remove them or add more
|
|
|
|
# EulerOS Version
|
|
OS_VERSION=${OS_VERSION:-2.2}
|
|
|
|
#Mandatory Packages that must be installed
|
|
# systemd: An init system that will start kata-agent
|
|
# iptables: Need by Kata agent
|
|
# udevlib.so: Need by Kata agent
|
|
PACKAGES="systemd iptables"
|