FROM alpine:3.15
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY ./ ./
CMD ["npm", "run", "start"]
=> ERROR [4/5] RUN npm install 0.4s
------
> [4/5] RUN npm install:
#8 0.375 /bin/sh: npm: not found
------
executor failed running [/bin/sh -c npm install]: exit code: 127
ERROR: Service 'frontend' failed to build : Build failed