From abbc085295219e35dd919217070c974cc0603de7 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Fri, 20 Oct 2023 06:41:46 -0400 Subject: [PATCH] Swap to Ubuntu image for base --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 553367d..fc6a8fe 100644 --- a/Containerfile +++ b/Containerfile @@ -18,7 +18,7 @@ ARG PACKAGE_HASH=23af572fdfe3459b9ab97e2e9aa7e3c11021c955d6064b801a27d7e8c21ae09 ARG PACKAGE_NAME=monero-linux-x64-${MONERO_VERSION}.tar.bz2 # download and unpack stage -FROM docker.io/library/debian:12 as downloader +FROM docker.io/library/ubuntu:22.04 as downloader RUN set -ex && \ apt-get update && \ @@ -40,7 +40,7 @@ RUN set -ex && \ # runtime stage -FROM docker.io/library/debian:12-slim +FROM docker.io/library/ubuntu:22.04 LABEL maintainer="Foster Hangdaan "