Compare commits

..

No commits in common. "8ec202cd42dc9babd070cdffda6f322d84c355ed" and "e939ca064716221d712da6bdcb6827fae995d419" have entirely different histories.

View File

@ -20,7 +20,8 @@ RUN apt-get update && \
inetutils-telnet \ # For telnet
openssl \ # For openssl commands
ca-certificates \ # For SSL/TLS certificate validation
#libreoffice && \ # SOLO SE RICHIESTO PER GENERAZIONE DOCX CRM
gosu \ # Existing requirement
libreoffice && \ # Existing requirement
apt-get clean && \
rm -rf /var/lib/apt/lists/*
@ -36,8 +37,8 @@ COPY ./libs/ /usr/local/tomcat/lib/
RUN chown -R ${USERNAME}:${GROUPNAME} /usr/local/tomcat
# Ensure the required dconf cache directory exists and has the correct permissions (per libreoffice)
#RUN mkdir -p /home/${USERNAME}/.cache/dconf && \
# chown -R ${USERNAME}:${GROUPNAME} /home/${USERNAME}/.cache/dconf
RUN mkdir -p /home/${USERNAME}/.cache/dconf && \
chown -R ${USERNAME}:${GROUPNAME} /home/${USERNAME}/.cache/dconf
USER ${USERNAME}