We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b37d07d commit 704a741Copy full SHA for 704a741
docker/Dockerfile
@@ -525,6 +525,9 @@ COPY --from=universe-vehicle-system-devel /opt/autoware /opt/autoware
525
COPY --from=universe-visualization-devel /opt/autoware /opt/autoware
526
COPY --from=universe-api-devel /opt/autoware /opt/autoware
527
528
+# strip unneeded symbols from binaries in /opt/autoware
529
+RUN find /opt/autoware -type f \( -executable -o -name "*.so" \) -exec strip --strip-unneeded --remove-section=.comment --remove-section=.note {} \;
530
+
531
# hadolint ignore=SC1091
532
RUN --mount=type=cache,target="${CCACHE_DIR}" \
533
--mount=type=bind,source=src/sensor_component,target=/autoware/src/sensor_component \
0 commit comments