From c35afd5e9ab6d726d145f7b2a3add581f865b495 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 14 Jan 2020 00:35:45 +0900 Subject: [PATCH] Fix arm64 image --- arm64v8.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm64v8.Dockerfile b/arm64v8.Dockerfile index 579572249..6dde4cf44 100644 --- a/arm64v8.Dockerfile +++ b/arm64v8.Dockerfile @@ -20,7 +20,7 @@ RUN cd BTCPayServer && dotnet publish --output /app/ --configuration Release # Force the builder machine to take make an arm runtime image. This is fine as long as the builder does not run any program FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.0-buster-slim-arm64v8 -COPY --from=builder /usr/bin/qemu-arm-static /usr/bin/qemu-arm-static +COPY --from=builder /usr/bin/qemu-aarch64-static /usr/bin/qemu-aarch64-static RUN apt-get update && apt-get install -y --no-install-recommends iproute2 openssh-client \ && rm -rf /var/lib/apt/lists/*