mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-05 23:44:21 +01:00
The build root container is switched from CentOS 8 to Stream 8 as the former reached EOL. Fixes #3605 Signed-off-by: Wainer dos Santos Moschetta <wainersm@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:stream8
|
|
|
|
RUN yum -y update && \
|
|
yum -y install \
|
|
git \
|
|
sudo \
|
|
wget && \
|
|
yum clean all
|