-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide the means to run the dockerized server under jprofiler if nee…
…ded. (#2099) * Provide the means to run the dockerized server under jprofiler. * Switch back to default materialize number of workers. * Cosmetic fix. * Followup to review comments.
- Loading branch information
1 parent
1c0e6bd
commit 9fd6979
Showing
4 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ARG DEEPHAVEN_SERVER_IMAGE | ||
FROM ${DEEPHAVEN_SERVER_IMAGE} | ||
|
||
# Replace with the desired version of jprofiler below. | ||
RUN set -eux; \ | ||
curl -o /tmp/jprofiler.tgz https://download-gcdn.ej-technologies.com/jprofiler/jprofiler_linux_13_0.tar.gz; \ | ||
tar -xzf /tmp/jprofiler.tgz -C /opt; \ | ||
rm -f /tmp/jprofiler.tgz |