From a4c5ae78f4b1f5f6f8a5b48c3ad66a70ec2b224a Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 18 Nov 2025 16:28:15 +0100 Subject: [PATCH] Delete the Python archive signature file after validation The Python archive signature file is no longer needed after validation, delete it just like the archive file. --- python/3.12/Dockerfile | 2 +- python/3.13/Dockerfile | 2 +- python/3.14/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/3.12/Dockerfile b/python/3.12/Dockerfile index a2456ee..ec57287 100644 --- a/python/3.12/Dockerfile +++ b/python/3.12/Dockerfile @@ -34,7 +34,7 @@ RUN \ python.tar.xz \ && mkdir -p /usr/src/python \ && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \ - && rm python.tar.xz \ + && rm python.tar.xz python.tar.xz.sigstore \ \ && apk add --no-cache --virtual .build-deps \ patch \ diff --git a/python/3.13/Dockerfile b/python/3.13/Dockerfile index a2456ee..ec57287 100644 --- a/python/3.13/Dockerfile +++ b/python/3.13/Dockerfile @@ -34,7 +34,7 @@ RUN \ python.tar.xz \ && mkdir -p /usr/src/python \ && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \ - && rm python.tar.xz \ + && rm python.tar.xz python.tar.xz.sigstore \ \ && apk add --no-cache --virtual .build-deps \ patch \ diff --git a/python/3.14/Dockerfile b/python/3.14/Dockerfile index 03a1788..d0fcfa8 100644 --- a/python/3.14/Dockerfile +++ b/python/3.14/Dockerfile @@ -34,7 +34,7 @@ RUN \ python.tar.xz \ && mkdir -p /usr/src/python \ && tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \ - && rm python.tar.xz \ + && rm python.tar.xz python.tar.xz.sigstore \ \ && apk add --no-cache --virtual .build-deps \ patch \