mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-16 21:04:25 +01:00
Detect the Go version required to build the agent from the versions.yaml file in the runtime repository. Fixes: #291 Signed-off-by: Marco Vedovati <mvedovati@suse.com>
21 lines
299 B
Docker
21 lines
299 B
Docker
#
|
|
# Copyright (C) 2018 Huawei Technologies Co., Ltd
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM euleros:@OS_VERSION@
|
|
|
|
@SET_PROXY@
|
|
|
|
RUN yum -y update && yum install -y \
|
|
yum \
|
|
git \
|
|
make \
|
|
gcc \
|
|
coreutils \
|
|
chrony \
|
|
curl
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|