Skip to content

Commit aeb7e1c

Browse files
authored
Delete the Python archive signature file after validation (#325)
The Python archive signature file is no longer needed after validation, delete it just like the archive file.
1 parent 12fab94 commit aeb7e1c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/3.12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN \
3434
python.tar.xz \
3535
&& mkdir -p /usr/src/python \
3636
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
37-
&& rm python.tar.xz \
37+
&& rm python.tar.xz python.tar.xz.sigstore \
3838
\
3939
&& apk add --no-cache --virtual .build-deps \
4040
patch \

python/3.13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN \
3434
python.tar.xz \
3535
&& mkdir -p /usr/src/python \
3636
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
37-
&& rm python.tar.xz \
37+
&& rm python.tar.xz python.tar.xz.sigstore \
3838
\
3939
&& apk add --no-cache --virtual .build-deps \
4040
patch \

python/3.14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN \
3434
python.tar.xz \
3535
&& mkdir -p /usr/src/python \
3636
&& tar -xJC /usr/src/python --strip-components=1 -f python.tar.xz \
37-
&& rm python.tar.xz \
37+
&& rm python.tar.xz python.tar.xz.sigstore \
3838
\
3939
&& apk add --no-cache --virtual .build-deps \
4040
patch \

0 commit comments

Comments
 (0)