We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a7cec2 commit 310d734Copy full SHA for 310d734
1 file changed
Dockerfile
@@ -77,8 +77,8 @@ 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/ddtrace -name "*.so" -exec strip -g {} \;
+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
83
FROM scratch
84
COPY --from=builder /build/python /
0 commit comments