All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m6s
Instala postgresql-client en la imagen de producción para que el endpoint de exportación de backup pueda usar pg_dump. Esto permite generar backups completos de la base de datos desde el botón de debug en la interfaz.
42 lines
785 B
Docker
42 lines
785 B
Docker
# Multi-stage build for Nuxt 4 application
|
|
FROM node:20-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
|
|
# Install dependencies
|
|
RUN npm ci
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Build the application
|
|
RUN npm run build
|
|
|
|
# Production stage
|
|
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Install PostgreSQL client tools (includes pg_dump for database backups)
|
|
RUN apk add --no-cache postgresql-client
|
|
|
|
# Copy built application from builder stage
|
|
COPY --from=builder /app/.output /app/.output
|
|
|
|
# Copy SQL files for seed endpoint
|
|
COPY --from=builder /app/server/database /app/server/database
|
|
|
|
# Expose port
|
|
EXPOSE 3000
|
|
|
|
# Set environment variables
|
|
ENV NODE_ENV=production
|
|
ENV NUXT_HOST=0.0.0.0
|
|
ENV NUXT_PORT=3000
|
|
|
|
# Start the application
|
|
CMD ["node", ".output/server/index.mjs"]
|