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