From 073b19a4b3316862f47fd67877c16576731b6c47 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Thu, 19 Oct 2023 23:43:20 -0400 Subject: [PATCH] Update `Containerfile` - Change image tag of downloader stage to use 12 instead of 12-slim - Add missing dependency: `bzip2` --- Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 887931e..553367d 100644 --- a/Containerfile +++ b/Containerfile @@ -18,11 +18,12 @@ ARG PACKAGE_HASH=23af572fdfe3459b9ab97e2e9aa7e3c11021c955d6064b801a27d7e8c21ae09 ARG PACKAGE_NAME=monero-linux-x64-${MONERO_VERSION}.tar.bz2 # download and unpack stage -FROM docker.io/library/debian:12-slim as downloader +FROM docker.io/library/debian:12 as downloader RUN set -ex && \ apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends --yes install \ + bzip2 \ ca-certificates \ wget