From 12ded0272861ffa8b22b112bca07c3f3a1b00526 Mon Sep 17 00:00:00 2001 From: Damian Mee Date: Thu, 15 Aug 2019 06:39:11 +0700 Subject: [PATCH] armv6 -> armv7 --- .github/workflows/dockerarm.yml | 2 +- 0.18/source/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dockerarm.yml b/.github/workflows/dockerarm.yml index 04a7b4d..5081301 100644 --- a/.github/workflows/dockerarm.yml +++ b/.github/workflows/dockerarm.yml @@ -7,7 +7,7 @@ jobs: - uses: actions/checkout@master - name: prepare stuff run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - + - name: test stuff run: docker run --rm -t arm32v6/alpine uname -m diff --git a/0.18/source/Dockerfile b/0.18/source/Dockerfile index 7130578..138a3fd 100644 --- a/0.18/source/Dockerfile +++ b/0.18/source/Dockerfile @@ -1,5 +1,5 @@ # Build stage for Bitcoin Core -FROM arm32v7/alpine:3.10 AS bitcoin-core +FROM arm32v6/alpine:3.10 AS bitcoin-core # fetch already built berkeleydb COPY --from=lncm/berkeleydb:db-4.8.30.NC-linux-arm /opt /opt @@ -84,7 +84,7 @@ RUN strip ${BITCOIN_PREFIX}/lib/libbitcoinconsensus.so.0.0.0 # Build stage for compiled artifacts -FROM arm32v7/alpine:3.10 AS final +FROM arm32v6/alpine:3.10 AS final LABEL maintainer.0="nolim1t (@nolim1t)" \ maintainer.1="Damian Mee (@meeDamian)"