FROM node:22-alpine AS build WORKDIR /web COPY package.json ./ RUN npm install COPY . . RUN npm run build FROM node:22-alpine AS runtime WORKDIR /app # Copiar archivos generados y dependencias necesarias COPY --from=build /web/dist ./dist COPY --from=build /web/node_modules ./node_modules COPY --from=build /web/package.json ./package.json # Configuración de red interna de Docker ENV HOST=0.0.0.0 ENV PORT=4321 EXPOSE 4321 CMD ["node", "./dist/server/entry.mjs"]