Skip to content

Commit

Permalink
Fixing dockerfile to remove just .debug
Browse files Browse the repository at this point in the history
  • Loading branch information
woody-apple committed Jun 22, 2023
1 parent dd95f31 commit a2b3523
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions integrations/docker/images/chip-build-imx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ RUN set -x \
&& chmod a+x fsl-imx-xwayland-glibc-x86_64-imx-image-multimedia-armv8a-imx8mmevk-toolchain-5.15-kirkstone.sh \
&& ./fsl-imx-xwayland-glibc-x86_64-imx-image-multimedia-armv8a-imx8mmevk-toolchain-5.15-kirkstone.sh -y \
&& rm -rf fsl-imx-xwayland-glibc-x86_64-imx-image-multimedia-armv8a-imx8mmevk-toolchain-5.15-kirkstone.sh \
&& : # last line
RUN set -x \
&& cd /opt/fsl-imx-xwayland \
&& find . -iname debug -exec rm -rf {} ';' \
&& find . -iname debug -exec rm -rf {} ';' \
# && find . -iname debug -exec rm -rf "{}" + || true \
&& find . -iname ".debug" -exec rm -rf "{}" + || true \
&& : # last line

FROM connectedhomeip/chip-build:${VERSION}
Expand Down

0 comments on commit a2b3523

Please sign in to comment.