FROM node:alpine WORKDIR /frontend COPY package.json . RUN npm install --global npm@latest RUN npm install COPY . . CMD ["npm","run","start"]