mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-26 15:32:30 +00:00
To avoid hitting quota limit on docker.io, this changes the Fedora and CentOS dockerfiles to pull the image from the projects registries. Fixes #1324 Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
11 lines
288 B
Docker
11 lines
288 B
Docker
#
|
|
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
From registry.fedoraproject.org/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
|