From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 27FAC15815E for ; Thu, 8 Feb 2024 03:17:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 692DEE2A46; Thu, 8 Feb 2024 03:17:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50DB2E2A47 for ; Thu, 8 Feb 2024 03:17:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 815E7343173 for ; Thu, 8 Feb 2024 03:17:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECAD414CB for ; Thu, 8 Feb 2024 03:17:44 +0000 (UTC) From: "John Helmert III" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "John Helmert III" Message-ID: <1707362199.e60a0dc885101fb64a14e4d44b4b09f5ea90de3c.ajak@gentoo> Subject: [gentoo-commits] proj/docker-images:master commit in: / X-VCS-Repository: proj/docker-images X-VCS-Files: portage.Dockerfile stage3.Dockerfile X-VCS-Directories: / X-VCS-Committer: ajak X-VCS-Committer-Name: John Helmert III X-VCS-Revision: e60a0dc885101fb64a14e4d44b4b09f5ea90de3c X-VCS-Branch: master Date: Thu, 8 Feb 2024 03:17:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ba3d23b0-7c3a-4d94-89fb-35d4267eb217 X-Archives-Hash: 4ef8261daebbf784b09dfa220dc6e35e commit: e60a0dc885101fb64a14e4d44b4b09f5ea90de3c Author: Sam James gentoo org> AuthorDate: Thu Feb 8 01:11:07 2024 +0000 Commit: John Helmert III gentoo org> CommitDate: Thu Feb 8 03:16:39 2024 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=e60a0dc8 Dockerfiles: use modern Alpine (3.11->3.19) for builds 3.11 was EOL'd on 2021-11-01. Signed-off-by: Sam James gentoo.org> Closes: https://github.com/gentoo/gentoo-docker-images/pull/135 Signed-off-by: John Helmert III gentoo.org> portage.Dockerfile | 2 +- stage3.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/portage.Dockerfile b/portage.Dockerfile index 23261d2..deb7969 100644 --- a/portage.Dockerfile +++ b/portage.Dockerfile @@ -3,7 +3,7 @@ # docker-17.05.0 or later. It fetches a daily snapshot from the official # sources and verifies its checksum as well as its gpg signature. -FROM --platform=$BUILDPLATFORM alpine:3.11 as builder +FROM --platform=$BUILDPLATFORM alpine:3.19 as builder WORKDIR /portage diff --git a/stage3.Dockerfile b/stage3.Dockerfile index 111ae96..3289fcf 100644 --- a/stage3.Dockerfile +++ b/stage3.Dockerfile @@ -4,7 +4,7 @@ # sources and verifies its checksum as well as its gpg signature. ARG BOOTSTRAP -FROM --platform=$BUILDPLATFORM ${BOOTSTRAP:-alpine:3.11} as builder +FROM --platform=$BUILDPLATFORM ${BOOTSTRAP:-alpine:3.19} as builder WORKDIR /gentoo