mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-14 03:44: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>
11 lines
271 B
Docker
11 lines
271 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
From docker.io/fedora:latest
|
|
|
|
RUN [ -n "$http_proxy" ] && sed -i '$ a proxy='$http_proxy /etc/dnf/dnf.conf ; true
|
|
|
|
RUN dnf install -y qemu-img parted gdisk e2fsprogs gcc xfsprogs findutils
|