fix 'Connection failed': remove all java.security restrictions

This helps avoid the 'Connection failed' error on some iDRAC6 servers (cf. https://github.com/DomiStyle/docker-idrac6/issues/26#issuecomment-1145394137)
This commit is contained in:
Arne Neumann 2022-08-18 11:53:59 +02:00 committed by GitHub
parent 9b5e1ce68c
commit 5173af3cce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ RUN apt-get update && \
RUN mkdir /app && \
chown ${USER_ID}:${GROUP_ID} /app
RUN perl -i -pe 's/^(\h*jdk\.tls\.disabledAlgorithms\h*=\h*)([\w.\h<>\n\\,]*)(TLSv1[,\n\h]\h*)/$1$2/m' /usr/lib/jvm/zulu-7-amd64/jre/lib/security/java.security
RUN rm /usr/lib/jvm/zulu-7-amd64/jre/lib/security/java.security
COPY startapp.sh /startapp.sh
COPY mountiso.sh /mountiso.sh