From 2fda9cf539324de0069ea37d78d5f640acd2da2f Mon Sep 17 00:00:00 2001 From: Andreas Greimel Date: Tue, 28 Nov 2023 01:33:19 +0100 Subject: [PATCH] Fix qemu package in ARM Docker files (#5504) With the new debian bookworm, the `qemu` package has been split into one package per architecture. --- arm32v7.Dockerfile | 2 +- arm64v8.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arm32v7.Dockerfile b/arm32v7.Dockerfile index f2a046853..561ac19bb 100644 --- a/arm32v7.Dockerfile +++ b/arm32v7.Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0.100-bookworm-slim AS builder ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 RUN apt-get update \ - && apt-get install -qq --no-install-recommends qemu qemu-user-static qemu-user binfmt-support + && apt-get install -qq --no-install-recommends qemu-system-arm qemu-user-static qemu-user binfmt-support WORKDIR /source COPY nuget.config nuget.config diff --git a/arm64v8.Dockerfile b/arm64v8.Dockerfile index 5ae37cd67..e69eda351 100644 --- a/arm64v8.Dockerfile +++ b/arm64v8.Dockerfile @@ -3,7 +3,7 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0.100-bookworm-slim AS builder ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 ENV LC_ALL en_US.UTF-8 RUN apt-get update \ - && apt-get install -qq --no-install-recommends qemu qemu-user-static qemu-user binfmt-support + && apt-get install -qq --no-install-recommends qemu-system-arm qemu-user-static qemu-user binfmt-support WORKDIR /source COPY nuget.config nuget.config