mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-15 12:24:26 +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>
23 lines
318 B
Docker
23 lines
318 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
From fedora:27
|
|
|
|
@SET_PROXY@
|
|
|
|
RUN dnf -y update && dnf install -y \
|
|
git \
|
|
systemd \
|
|
pkgconfig \
|
|
gcc \
|
|
coreutils \
|
|
libseccomp \
|
|
libseccomp-devel \
|
|
chrony \
|
|
curl
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|