summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/remove-dockerfiles-from-wamr.sh
blob: 20da534369992b6ca46efee348ea420acb6ef4f7 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# Currently, wasm-micro-runtime's Dockerfiles are not-well following hadolint rules.
# So, we should remove them for now.
DIR="$( cd "$( dirname "$0" )" && pwd )"
ls ${DIR}/wasm-micro-runtime-*/**/Dockerfile | xargs rm -f
ls ${DIR}/wasm-micro-runtime-*/**/**/**/Dockerfile | xargs rm -f
ls ${DIR}/wasm-micro-runtime-*/**/**/**/**/Dockerfile | xargs rm -f