Skip to content

Commit 23ddd5a

Browse files
committed
[no-relnote] Ensure that fpm generates sha256 digests
Signed-off-by: Evan Lezar <[email protected]>
1 parent 61d2b03 commit 23ddd5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deployments/container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ RUN for arch in $(ls /artifacts/packages/centos7-src/); do \
7777
# For each package in the source folder we recreate a package to update
7878
# the digests to 256-bit since we're running in a ubi9 container.
7979
for src_package in $(ls /artifacts/packages/centos7-src/${arch}/*.rpm); do \
80-
fpm -s rpm -t rpm ${src_package}; \
80+
fpm -s rpm -t rpm --rpm-digest=sha256 ${src_package}; \
8181
done; \
8282
done; \
8383
rm -rf /artifacts/packages/centos7-src

0 commit comments

Comments
 (0)