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 8bf5b05 commit d1139d8Copy full SHA for d1139d8
Dockerfile
@@ -77,7 +77,7 @@ RUN find ./python/lib/$runtime/site-packages/ddtrace -name \*.pyx -delete
77
# reduce the size when ddtrace is built from sources. The release wheels are
78
# already stripped of debug symbols. We should revisit this when serverless
79
# benchmark uses pre-built wheels instead of building from sources.
80
-RUN find ./python/lib/$runtime/site-packages -name "*.so" -exec strip -g {} \;
81
-
+# RUN find ./python/lib/$runtime/site-packages -name "*.so" -exec strip -g {} \;
+RUN find ./python/lib$runtime/site-packages/ddtrace -name "*.so" -exec strip -g {} \;
82
FROM scratch
83
COPY --from=builder /build/python /
0 commit comments