remove dockerfile

This commit is contained in:
2025-08-25 15:13:55 +02:00
parent 5d018c4c5c
commit 38834817af

View File

@@ -1,24 +0,0 @@
# Etapa 1: build
FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# Etapa 2: producción
FROM node:22-alpine AS runner
WORKDIR /app
COPY --from=builder /app/.output ./.output
COPY --from=builder /app/package*.json ./
RUN npm install --omit=dev
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]