Skip to content

Commit 9dcbdea

Browse files
committed
Fix installation of openssl 3.0.8
1 parent 3dfb0ea commit 9dcbdea

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,10 @@ COPY --from=rpm-provider /tmp/rpms/* /tmp/download/
6363
# cd, ls, cat, vim, tcpdump, are for debugging
6464
RUN clean_install amazon-efs-utils true && \
6565
clean_install crypto-policies true && \
66-
clean_install openssl-libs true && \
67-
clean_install openssl true && \
66+
# Remove existing OpenSSL packages and install version 3.0.8 packages. Newer OpenSSL version
67+
# have an updated method of enabling fips, which we do not support yet.
68+
remove_package "openssl openssl-libs openssl-fips-provider-latest" && \
69+
clean_install "openssl-3.0.8 openssl-libs-3.0.8 openssl-fips-provider-certified-3.0.8" true && \
6870
install_binary \
6971
/usr/bin/cat \
7072
/usr/bin/cd \

0 commit comments

Comments
 (0)