FROM docker.io/node:20-alpine AS build WORKDIR /app ENV PATH=/app/node_modules/.bin:$PATH COPY package.json /app/package.json RUN npm install RUN npm install -g @vue/cli COPY . /app RUN npm run build FROM docker.io/library/nginx:stable-alpine COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build /app/dist /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]