-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53dd7fd
commit 8d3de10
Showing
3 changed files
with
4 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
FROM python:3.10 | ||
|
||
# install rust | ||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
ENV PATH="/root/.cargo/bin:${PATH}" | ||
|
||
ENV DD_PROFILING_ENABLED true | ||
ENV DD_TRACE_ENABLED false | ||
ENV DD_TRACE_DEBUG true | ||
ENV DD_PROFILING_EXPORT_LIBDD_ENABLED 0 | ||
ENV DD_PROFILING__FORCE_LEGACY_EXPORTER 1 | ||
ENV DD_PROFILING_OUTPUT_PPROF="/app/data/profiles" |
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
FROM python:3.11 AS base | ||
|
||
# install rust | ||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
ENV PATH="/root/.cargo/bin:${PATH}" | ||
|
||
ENV DD_PROFILING_ENABLED true | ||
ENV DD_TRACE_ENABLED false | ||
ENV DD_TRACE_DEBUG true | ||
ENV DD_PROFILING_EXPORT_LIBDD_ENABLED 0 | ||
ENV DD_PROFILING__FORCE_LEGACY_EXPORTER 1 | ||
ENV DD_PROFILING_OUTPUT_PPROF="/app/data/profiles" |
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
FROM python:3.11 AS base | ||
|
||
# install rust | ||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
ENV PATH="/root/.cargo/bin:${PATH}" | ||
|
||
ENV DD_PROFILING_ENABLED true | ||
ENV DD_TRACE_ENABLED false | ||
ENV DD_TRACE_DEBUG true | ||
ENV DD_PROFILING_EXPORT_LIBDD_ENABLED 1 | ||
ENV DD_PROFILING__FORCE_LEGACY_EXPORTER 0 | ||
ENV DD_PROFILING_OUTPUT_PPROF="/app/data/profiles" |