Docker – npm ERR! `npm ci` can only install packages when your package.json and package-lock.json
I need to install dependencies to build the frontend on CI/CD. Dokerfile: FROM node:18.12.1 enter code here ENV CI="true" WORKDIR /workdir COPY package.json package-lock.json /workdir/ RUN npm ci package.json { "name": "v2", ... "dependencies": { "formik": "^2.2.9", "i18next": "^21.9.1", "lodash":…