{ "schemaVersion": 2, "dockerfileLines": [ "FROM node as build", "COPY . /app", "WORKDIR /app", "RUN npm i", "RUN npm run build", "FROM nginx:mainline-alpine-slim", "COPY --from=build /app/dist /usr/share/nginx/html" ] }