mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
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:
parent
c8b9a425b8
commit
2fda9cf539
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue