Hello, I want to test a bash installer script within the termux-docker image using GitHub Actions. While GitHub Actions does support running commands within a custom docker image/container, it does not honor the ENTRYPOINT of the image and insists on running everything as root. Even running the commands explicitly under /entrypoint.sh ... to drop privileges does not seem to work properly, due to permission issues. It also seems that the GitHub Actions actions/checkout module expects node to be installed at /__e/node20/bin/node. I also encountered strange networking issues when executing /entrypoint.sh ... multiple times. Is termux-docker even compatible with GitHub Actions? Maybe this is something that could be documented better?
Hello, I want to test a bash installer script within the
termux-dockerimage using GitHub Actions. While GitHub Actions does support running commands within a custom docker image/container, it does not honor theENTRYPOINTof the image and insists on running everything asroot. Even running the commands explicitly under/entrypoint.sh ...to drop privileges does not seem to work properly, due to permission issues. It also seems that the GitHub Actionsactions/checkoutmodule expectsnodeto be installed at/__e/node20/bin/node. I also encountered strange networking issues when executing/entrypoint.sh ...multiple times. Istermux-dockereven compatible with GitHub Actions? Maybe this is something that could be documented better?