mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-21 07:14:25 +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>
21 lines
309 B
Docker
21 lines
309 B
Docker
#
|
|
# Copyright (C) 2018 Huawei Technologies Co., Ltd
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM docker.io/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@
|