gestione ssl vecchio
This commit is contained in:
parent
ce35e86ef2
commit
4e59bc90c1
@ -7,8 +7,11 @@ ARG USERNAME
|
|||||||
ARG GROUPNAME
|
ARG GROUPNAME
|
||||||
|
|
||||||
# Create group and user with IDs passed from Docker Compose
|
# Create group and user with IDs passed from Docker Compose
|
||||||
RUN groupadd -g ${GROUP_ID} ${GROUPNAME} && \
|
RUN groupadd -g ${GROUP_ID} ${GROUPNAME} && useradd --no-log-init -u ${USER_ID} -g ${GROUP_ID} -m ${USERNAME} || true
|
||||||
useradd --no-log-init -u ${USER_ID} -g ${GROUP_ID} -m ${USERNAME} || true
|
|
||||||
|
#SUPPORTO A VERSIONI VECCHIE DI SQL SERVER (ERRORI SSL)
|
||||||
|
# Check if java.security exists at the correct path and remove any disabled algorithms
|
||||||
|
#RUN if [ -f /opt/java/openjdk/conf/security/java.security ]; then sed -i '/jdk.tls.disabledAlgorithms/d' /opt/java/openjdk/conf/security/java.security; else echo "java.security file not found"; fi
|
||||||
|
|
||||||
# Install necessary packages and clean up
|
# Install necessary packages and clean up
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user