You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like the following line is missing from the Dockerfile in webui:
RUN yarn add express-rate-limit@7.2.0
Overall I am a little bit surprised that not all dependencies listed in "dependencies" inside "package.json" are installed. Are they already provided by the base image?
The missing line causes:
node:internal/modules/cjs/loader:1147
throw err;
^
Error: Cannot find module 'express-rate-limit'
Require stack:
- /home/node/webui/lib/default/server.js
at Module._resolveFilename (node:internal/modules/cjs/loader:1144:15)
at Module._load (node:internal/modules/cjs/loader:985:27)
at Module.require (node:internal/modules/cjs/loader:1235:19)
at require (node:internal/modules/helpers:176:18)
at Object.<anonymous> (/home/node/webui/lib/default/server.js:14:30)
at Module._compile (node:internal/modules/cjs/loader:1376:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1435:10)
at Module.load (node:internal/modules/cjs/loader:1207:32)
at Module._load (node:internal/modules/cjs/loader:1023:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:135:12) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/home/node/webui/lib/default/server.js' ]
}
Node.js v20.10.0
when running docker run -d ghcr.io/eclipse/openvsx-webui:v0.16.0
The text was updated successfully, but these errors were encountered:
Seems like the following line is missing from the Dockerfile in webui:
Overall I am a little bit surprised that not all dependencies listed in "dependencies" inside "package.json" are installed. Are they already provided by the base image?
The missing line causes:
when running
docker run -d ghcr.io/eclipse/openvsx-webui:v0.16.0
The text was updated successfully, but these errors were encountered: