From a6a4d0f827a2380252d54a2e60151b73f099f5a3 Mon Sep 17 00:00:00 2001 From: Mariusz Kogen Date: Wed, 12 Feb 2025 04:14:04 +0000 Subject: [PATCH] Use latest stable alpine image --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4fe8769..6b65b85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG PLATFORM FROM lncm/berkeleydb:db-4.8.30.NC-${PLATFORM} AS berkeleydb # Build stage for Bitcoin Core -FROM alpine:3.18 AS bitcoin-core +FROM alpine:3.21 AS bitcoin-core COPY --from=berkeleydb /opt /opt @@ -54,7 +54,7 @@ RUN make install RUN strip ${BITCOIN_PREFIX}/bin/* # Build stage for compiled artifacts -FROM alpine:3.18 +FROM alpine:3.21 LABEL maintainer.0="João Fonseca (@joaopaulofonseca)" \ maintainer.1="Pedro Branco (@pedrobranco)" \ @@ -69,7 +69,7 @@ RUN apk --no-cache add \ libzmq \ sqlite-dev \ tini \ - yq \ + yq RUN rm -rf /var/cache/apk/* ARG ARCH