From 78ee492c46aa9c8eae982296290bb40de8f9692d Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Thu, 6 Nov 2025 12:10:35 -0800 Subject: [PATCH] client: Dockerfiles: local: root: use evergreencrypto/root image - Provides C++20 support and a slimmer package (~18% smaller) - Required for issue #23 (bitcoin-core lib support) --- .../local/finance/archlinux/Dockerfile.root.in | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/client/Dockerfiles/local/finance/archlinux/Dockerfile.root.in b/client/Dockerfiles/local/finance/archlinux/Dockerfile.root.in index adeeee4..d0bfd7e 100644 --- a/client/Dockerfiles/local/finance/archlinux/Dockerfile.root.in +++ b/client/Dockerfiles/local/finance/archlinux/Dockerfile.root.in @@ -1,6 +1,6 @@ # docker-finance | modern accounting for the power-user # -# Copyright (C) 2021-2024 Aaron Fiore (Founder, Evergreen Crypto LLC) +# Copyright (C) 2021-2025 Aaron Fiore (Founder, Evergreen Crypto LLC) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -22,9 +22,12 @@ USER root # ROOT.cern -RUN pacman -Syu \ - root \ - --noconfirm --disable-download-timeout +# https://hub.docker.com/r/evergreencrypto/root +COPY --from=evergreencrypto/root:archlinux /home/builder/root/root-6.36.04-6-x86_64.pkg.tar.zst /usr/local/src/ + +WORKDIR /usr/local/src +RUN pacman -Syu --noconfirm --disable-download-timeout +RUN pacman -U root-6.36.04-6-x86_64.pkg.tar.zst --noconfirm --disable-download-timeout # docker-finance RUN pacman -Syu \