skip to Main Content

Dockerfile can not see package.json file

I've got this structure of the project: - project -- apps --- microservice-one ---- Dockerfile -- package.json -- docker-compose.yml Here is my Dockerfile from the microservice-one: FROM node:12.13-alpine As development WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY .…

VIEW QUESTION
Back To Top
Search