> husky install
sh: husky: not found
npm ERR! command failed
npm ERR! command sh -c husky install
I added a line to the Dockerfile to install Husky:
RUN npm install husky -g, before: RUN npm ci .
The error is gone.
I may be wrong, but most likely you should change the Dockerfile.
I failed to deploy by Dockerfile. Next error:
I added a line to the Dockerfile to install Husky:
RUN npm install husky -g
, before:RUN npm ci
. The error is gone. I may be wrong, but most likely you should change the Dockerfile.