-
Pulled latest to build locally [user@localhost docker-renovate]$ docker build . Do you know what non-zero code: 60 refers to? |
Beta Was this translation helpful? Give feedback.
Replies: 13 comments
-
Don't know, can you capture the full build output and check it for errors? |
Beta Was this translation helpful? Give feedback.
-
I hadn't tried it in a long time so cloned the repo and ran |
Beta Was this translation helpful? Give feedback.
-
Thanks for replies. |
Beta Was this translation helpful? Give feedback.
-
As you try to install mode, it's likely that curl can't reach the nodes download Server. |
Beta Was this translation helpful? Give feedback.
-
So the code (60) is a curl code https://curl.haxx.se/libcurl/c/libcurl-errors.html That got me much further on, however now running into this issue with regard to "re2" #======================================================= Error: Cannot find module './build/Release/re2'
Have you guys ran into this one on the latest docker-renovate build? |
Beta Was this translation helpful? Give feedback.
-
Check your earlier logs, because the |
Beta Was this translation helpful? Give feedback.
-
I don't see any obvious errors in previous steps.
|
Beta Was this translation helpful? Give feedback.
-
What happens if you pull the repository and build the Dockerfile unmodified? The problem seems to be at your end - either the Dockerfile modifications you made, or your enterprise proxy messing things up - so test building the Dockerfile unmodified aims to eliminate the first option. |
Beta Was this translation helpful? Give feedback.
-
I think i know the problem, |
Beta Was this translation helpful? Give feedback.
-
it's trying to download from https://github.com/uhop/node-re2/releases/tag/1.15.4, so i think again it's a proxy issue |
Beta Was this translation helpful? Give feedback.
-
@bmaginni Can you check infore from here: uhop/node-re2#81 (comment) |
Beta Was this translation helpful? Give feedback.
-
Hi, Steps I took to resolve
Then you need required certs added to config for
or less safe
npm
or less safe
alternatively create a ~/.npmrc and add values (i.e RUN echo strict-ssl=false >> ~/.npmrc) yarn
or less safe
alternatively create a ~/.yarnrc and add values (i.e RUN echo strict-ssl false >> ~/.yarnrc) node (ENV vars)
or less safe
|
Beta Was this translation helpful? Give feedback.
-
Thanks for sharing the config! |
Beta Was this translation helpful? Give feedback.
Hi,
Finally got this to build completely.
The issue was again being behind a corporate proxy and the use of self signed certs in package proxies
Steps I took to resolve
changes made to Dockerfile
Then you need required certs added to config for
curl
or less safe
npm