From c04412ae2cc60e3622a82d8bd8f79b1e5264400f Mon Sep 17 00:00:00 2001 From: Denghui Dong Date: Sat, 23 Mar 2024 16:11:33 +0800 Subject: [PATCH] chore: update playground.Dockerfile --- playground.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playground.Dockerfile b/playground.Dockerfile index 102696e5..e31ea755 100644 --- a/playground.Dockerfile +++ b/playground.Dockerfile @@ -13,6 +13,7 @@ COPY --from=build ${DEPENDENCY}/META-INF /jifa/META-INF COPY --from=build ${DEPENDENCY}/BOOT-INF/classes /jifa ADD https://raw.githubusercontent.com/wiki/eclipse/jifa/resources/playground/thread-dump-demo.log /demo/ ADD https://raw.githubusercontent.com/wiki/eclipse/jifa/resources/playground/gc-log-demo.log /demo/ +ADD https://raw.githubusercontent.com/wiki/eclipse/jifa/resources/playground/gc-log-demo.log /demo/gc-log-demo-copy.log ADD https://raw.githubusercontent.com/wiki/eclipse/jifa/resources/playground/heap-dump-demo.hprof.gz /demo/ ADD https://raw.githubusercontent.com/wiki/eclipse/jifa/resources/playground/jfr-demo.jfr demo/ -ENTRYPOINT ["java","--add-opens=java.base/java.lang=ALL-UNNAMED","--add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED","-Djdk.util.zip.disableZip64ExtraFieldValidation=true","-Dmat.oql.methodFilter=!*","-cp","jifa:jifa/lib/*","org.eclipse.jifa.server.Launcher","--jifa.role=standalone-worker","--jifa.storage-path=/jifa-storage","--jifa.input-files[0]=/demo/jfr-demo.jfr","--jifa.input-files[1]=/demo/thread-dump-demo.log","--jifa.input-files[2]=/demo/gc-log-demo.log","--jifa.input-files[3]=/demo/heap-dump-demo.hprof.gz"] +ENTRYPOINT ["java","--add-opens=java.base/java.lang=ALL-UNNAMED","--add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED","-Djdk.util.zip.disableZip64ExtraFieldValidation=true","-Dmat.oql.methodFilter=!*","-cp","jifa:jifa/lib/*","org.eclipse.jifa.server.Launcher","--jifa.role=standalone-worker","--jifa.storage-path=/jifa-storage","--jifa.input-files[0]=/demo/jfr-demo.jfr","--jifa.input-files[1]=/demo/thread-dump-demo.log","--jifa.input-files[2]=/demo/gc-log-demo-copy.log","--jifa.input-files[3]=/demo/gc-log-demo.log","--jifa.input-files[4]=/demo/heap-dump-demo.hprof.gz"]