With Alpine 3.14.0 update running shell scripts from Makefile produces the following error: ``` make: /bin/sh: Operation not permitted ``` How to reproduce: 1. Create simple `Makefile`: ``` .PHONY: test test: run_test ``` 2. Create shell script `/usr/local/bin/run_test`: ```shell #!/usr/bin/env bash echo 123 ``` 3. Make it executable: `chmod +x /usr/local/bin/run_test` 4. Install make `apk add --update make` 5. Run `make test`, you'll get ``` run_test make: run_test: Operation not permitted make: *** [Makefile:3: test] Error 127 ``` Also reported at https://gitlab.alpinelinux.org/alpine/aports/-/issues/12396 Does not seem to have issues with the newer docker versions.