mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-18 22:04:22 +01:00
Build dracut initrd and images inside a reference container. Signed-off-by: Marco Vedovati <mvedovati@suse.com>
15 lines
373 B
Docker
15 lines
373 B
Docker
#
|
|
# Copyright (c) 2019 SUSE LLC
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from opensuse/tumbleweed
|
|
|
|
RUN zypper --non-interactive refresh; \
|
|
zypper --non-interactive install --no-recommends --force-resolution cpio curl dracut gcc git-core make tar; \
|
|
zypper --non-interactive clean --all;
|
|
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|