We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376eb90 commit 0fda51aCopy full SHA for 0fda51a
Dockerfile
@@ -78,5 +78,8 @@ RUN find ./python/lib/$runtime/site-packages/ddtrace -name \*.h -delete
78
RUN find ./python/lib/$runtime/site-packages/ddtrace -name \*.hpp -delete
79
RUN find ./python/lib/$runtime/site-packages/ddtrace -name \*.pyx -delete
80
81
+# Strip debug symbols using strip -g for all .so files in ddtrace
82
+RUN find ./python/lib/$runtime/site-packages/ddtrace -name "*.so" -exec strip -g {} \;
83
+
84
FROM scratch
85
COPY --from=builder /build/python /
0 commit comments