I'm trying to build the docker image from a cloned repo (i needed to add littles changes) but the build crash due to:
npm ERR! missing script: build npm ERR! A complete log of this run can be found in: npm ERR! /root/.npm/_logs/2019-11-27T14_55_05_361Z-debug.log The command '/bin/sh -c npm install && npm run build' returned a non-zero code: 1
I've tried to add "build": "npm build ." in the script part of package.json, the build is now passing but i can't run it.
Hi,
I'm trying to build the docker image from a cloned repo (i needed to add littles changes) but the build crash due to:
I've tried to add
"build": "npm build ."
in the script part of package.json, the build is now passing but i can't run it.any idea ?