This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-XX:+HeapDumpOnOutOfMemoryError | |
-XX:HeapDumpPath=/path/to/dumps | |
-XX:+ExitOnOutOfMemoryError | |
-Xlog:gc*:file=/path/to/gc.log | |
-XX:NativeMemoryTracking=detail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM myproj/base-java-gradle-dev:1.0.0-SNAPSHOT | |
# Copy certificate URLs file and script | |
COPY scripts/ca-cert-urls.properties scripts/configure-ca-cert.sh /tmp/ | |
# Run certificate setup as root during build | |
RUN /bin/bash /tmp/configure-ca-cert.sh && \ | |
rm -f /tmp/configure-ca-cert.sh /tmp/ca-cert-urls.properties && \ | |
if getent passwd ubuntu > /dev/null; then userdel -r ubuntu; fi && \ | |
if getent group ubuntu > /dev/null; then groupdel ubuntu; fi && \ |