Laurent Goderre
Laurent Goderre
I am not sure about what inline code he is referring but WET core does not rely on inline code except maybe for web metrics. All other inline code is...
Just to list a few: https://github.com/nodejs/docker-node/pull/1768 https://github.com/nodejs/docker-node/pull/1245 https://github.com/nodejs/docker-node/issues/1238 https://github.com/nodejs/docker-node/issues/777 https://github.com/nodejs/docker-node/pull/898 https://github.com/nodejs/docker-node/pull/808
I believe this might be from running a very old version of Docker like pointed out in this issue: https://github.com/nodejs/node/issues/43064
Not sure if it's a typo but you are missing the dash before 'it'. It should be `docker run -it`
Sorry it didn't occur to me sooner. The entrypoint tries to see if the first argument is an executable. If it isn't it assumes it's a node script. Alpine doesn't...
I just tried on Ventura with an M2 chip and it didn't hang
I am ablwe to reproduce the behavior when disabling my network. I am wondering if some firewall rule might be blocking traffic.
Not sure exactly because there isn't enough details but It's possible that it worked when it is built on a machine where the use building already have UID 1000 (typical...
Can you try this: https://stackoverflow.com/a/75827486
My guess it's that it's a mismatch in user id. The Node user id is 1000. You could make the folder writable to all `cmod a+r` to address this.