mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-29 03:04:24 +01:00
In case a user wants to use podman instead of docker to build initrd/rootfs images, facilitate it by setting the variable `USE_PODMAN=true`. Fixes: #370 Signed-off-by: Nitesh Konkar <niteshkonkar@in.ibm.com>
22 lines
323 B
Docker
22 lines
323 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
From docker.io/centos:@OS_VERSION@
|
|
|
|
@SET_PROXY@
|
|
|
|
RUN yum -y update && yum install -y \
|
|
git \
|
|
make \
|
|
gcc \
|
|
coreutils \
|
|
libseccomp \
|
|
libseccomp-devel \
|
|
chrony \
|
|
curl
|
|
|
|
# This will install the proper golang to build Kata components
|
|
@INSTALL_GO@
|