i am building docker image for angular webapp in ubuntu 20.04 AWS server this is docker file
FROM node:14.. AS node
RUN rm -rf node_modules
WORKDIR /app/ COPY . /app/
RUN npm ci during RUN npm ci , am etting following error
Step 6/11 : RUN npm ci Step 6/11 : RUN npm ci ---> Running in ab36f15cce69 npm ERR! Error while executing: npm ERR! /usr/bin/git ls-remote -h -t ssh://git@github.com/eligrey/FileSaver.js.git npm ERR! npm ERR! Host key verification failed. npm ERR! fatal: Could not read from remote repository. npm ERR! npm ERR! Please make sure you have the correct access rights npm ERR! and the repository exists. npm ERR! npm ERR! exited with error code: 128
npm ERR! A complete log of this run can be found in: npm ERR! /root/.npm/_logs/2021-06-07T05_13_09_239Z-debug.log
Does anyone know how to resolve this