Skip to content

Commit ff7c2d4

Browse files
authored
Merge pull request #1500 from elezar/add-digest-256-fpm
[no-relnote] Ensure that fpm generates sha256 digests
2 parents 61d2b03 + 23ddd5a commit ff7c2d4

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)