# Stage 1: build Vue upload SPA FROM node:20-alpine AS build WORKDIR /app ARG VITE_API_URL=http://10.0.10.189:3001 ENV VITE_API_URL=$VITE_API_URL COPY package.json package-lock.json* ./ RUN npm ci COPY . . RUN npm run build # Stage 2: serve with nginx FROM nginx:alpine COPY --from=build /app/dist /usr/share/nginx/html COPY nginx-default.conf /etc/nginx/conf.d/default.conf EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]