mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-14 11:04:27 +01:00
Don't default to a hard-coded Intel architecture - default to the host architecture. This requires the `coreutils` package to be installed both inside each docker image (for `USE_DOCKER=true`) and in the host environments. Added missing SPDX headers to `Dockerfile` templates to pacify the CI checks. Fixes #100. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
12 lines
260 B
Docker
12 lines
260 B
Docker
#
|
|
# Copyright (C) 2018 Huawei Technologies Co., Ltd
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM euleros:@OS_VERSION@
|
|
|
|
RUN yum -y update && yum install -y yum git make gcc coreutils
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|