Skip to content

Instantly share code, notes, and snippets.

@lfoppiano
lfoppiano / JProfiler-with-Docker.md
Last active March 23, 2021 06:24 — forked from kevin-lee/JProfiler-with-Docker.md
JVM Profiler with Docker

JProfiler with Docker

Docker

DockerFile

DockerFile should have JProfiler installation.

RUN wget <JProfiler file location> -P /tmp/ && \
  tar -xzf /tmp/<JProfiler file> -C /usr/local && \
  rm /tmp/<JProfiler file>