mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-12 10:16:48 +00:00
Centos8 is EOL and repos are not available anymore. Centos9 contains the same packages and should do well as a base for testing. Signed-off-by: Lukáš Doktor <ldoktor@redhat.com>
15 lines
280 B
Docker
15 lines
280 B
Docker
# Copyright (c) 2021 Red Hat, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# This is the build root image for Kata Containers on OpenShift CI.
|
|
#
|
|
FROM quay.io/centos/centos:stream9
|
|
|
|
RUN yum -y update && \
|
|
yum -y install \
|
|
git \
|
|
sudo \
|
|
wget && \
|
|
yum clean all
|