mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-15 06:37:40 +00:00
This reverts commit dfa25a42ff.
The original issue was fixed:
https://github.com/microsoft/azurelinux/issues/13971#issuecomment-2956384627
17 lines
298 B
Docker
17 lines
298 B
Docker
# Copyright (c) 2023 Microsoft Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
ARG IMAGE_REGISTRY=mcr.microsoft.com
|
|
FROM ${IMAGE_REGISTRY}/azurelinux/base/core:@OS_VERSION@
|
|
|
|
RUN tdnf -y install \
|
|
ca-certificates \
|
|
build-essential \
|
|
dnf \
|
|
git \
|
|
tar \
|
|
xz
|
|
|
|
@INSTALL_RUST@
|