mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-27 18:24:26 +01:00
Add osbuilder support to build a rootfs and image based on the CBL-Mariner Linux distro Fixes: #6462 Signed-off-by: Dallas Delaney <dadelan@microsoft.com>
16 lines
290 B
Docker
16 lines
290 B
Docker
# Copyright (c) 2023 Microsoft Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REGISTRY=mcr.microsoft.com
|
|
FROM ${IMAGE_REGISTRY}/cbl-mariner/base/core:@OS_VERSION@
|
|
|
|
RUN tdnf -y install \
|
|
ca-certificates \
|
|
build-essential \
|
|
dnf \
|
|
git \
|
|
tar
|
|
|
|
@INSTALL_RUST@
|