When the Dockerfile runs the make ci-test, it fails with a fatal error due to api.nodesecurity.io no longer resolving (I'm not even sure what that domain was used for).
Step 4/11 : RUN yarn install --non-interactive --frozen-lockfile
---> Using cache
---> 14b2249540a6
Step 5/11 : RUN make ci-test
---> Running in 868a2db27d19
nsp check
(+) Error: Client request error: getaddrinfo ENOTFOUND api.nodesecurity.io api.nodesecurity.io:443
Makefile:30: recipe for target 'ci-test' failed
make: *** [ci-test] Error 1
A makeshift fix for anyone running into this issue, is to simply comment out the RUN make ci-test line in the Dockerfile, and it builds just fine.
When the Dockerfile runs the
make ci-test, it fails with a fatal error due toapi.nodesecurity.iono longer resolving (I'm not even sure what that domain was used for).A makeshift fix for anyone running into this issue, is to simply comment out the
RUN make ci-testline in the Dockerfile, and it builds just fine.