Hi team When I execute docker-compose -f docker-compose-local.yml up - it takes 6-7 min
Who can advise how to increase the speed? My compose file: FROM openjdk:11-jre-slim as buildwar RUN cd / \ && apt-get update \ && apt-get install -y --no-install-recommends git gradle COPY . . RUN chmod +x ./gradlew RUN chmod +x ./cas_saml_update.sh RUN ./gradlew clean build FROM openjdk:11-jre-slim COPY --from=buildwar build/libs/cas.war . COPY etc/cas /etc/cas COPY cas_saml_update.sh /cas_saml_update.sh RUN chmod +x /cas_saml_update.sh EXPOSE 8443 CMD [ "/usr/bin/java", "-jar", "cas.war" ] -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions: https://goo.gl/mh7qDG --- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/apereo.org/d/msgid/cas-user/3d641d32-912b-4f32-a290-070ae5fc0670%40apereo.org.
