Fix qemu package in ARM Docker files (#5504)

With the new debian bookworm, the `qemu` package has been split into one package per architecture.
This commit is contained in:
Andreas Greimel 2023-11-28 01:33:19 +01:00 committed by GitHub
parent c8b9a425b8
commit 2fda9cf539
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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