I\'m trying to build a docker image of a Vue CLI App. With the dockerfile:
FROM node:lts-alpine WORKDIR /app COPY ./dist . COPY package*.json ./ RUN npm inst