mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 21:01:23 +02:00
- Add backend Dockerfile with multi-stage build and health checks - Add web Dockerfile with SvelteKit static env vars - Add docker-entrypoint.sh for automatic DB migration - Add nutriphi-backend and nutriphi-web to docker-compose.macmini.yml - Add CI/CD detection and build jobs for nutriphi - Update CORS origins in mana-core-auth to include nutriphi.mana.how - Include nutriphi in deploy:landing:all script Ports: Backend 3023, Web 5189 Domain: nutriphi.mana.how / nutriphi-api.mana.how
64 lines
1.7 KiB
Docker
64 lines
1.7 KiB
Docker
# Build stage
|
|
FROM node:20-alpine AS builder
|
|
|
|
# Install pnpm
|
|
RUN corepack enable && corepack prepare pnpm@9.15.0 --activate
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy root workspace files
|
|
COPY pnpm-workspace.yaml ./
|
|
COPY package.json ./
|
|
COPY pnpm-lock.yaml ./
|
|
|
|
# Copy shared packages
|
|
COPY packages/shared-nestjs-auth ./packages/shared-nestjs-auth
|
|
|
|
# Copy nutriphi packages and backend
|
|
COPY apps/nutriphi/packages ./apps/nutriphi/packages
|
|
COPY apps/nutriphi/apps/backend ./apps/nutriphi/apps/backend
|
|
|
|
# Install dependencies
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
# Build shared packages first
|
|
WORKDIR /app/packages/shared-nestjs-auth
|
|
RUN pnpm build
|
|
|
|
# Build the backend
|
|
WORKDIR /app/apps/nutriphi/apps/backend
|
|
RUN pnpm build
|
|
|
|
# Production stage
|
|
FROM node:20-alpine AS production
|
|
|
|
# Install pnpm and postgresql-client for health checks
|
|
RUN corepack enable && corepack prepare pnpm@9.15.0 --activate \
|
|
&& apk add --no-cache postgresql-client
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy everything from builder (including node_modules)
|
|
COPY --from=builder /app/pnpm-workspace.yaml ./
|
|
COPY --from=builder /app/package.json ./
|
|
COPY --from=builder /app/pnpm-lock.yaml ./
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
COPY --from=builder /app/packages ./packages
|
|
COPY --from=builder /app/apps/nutriphi ./apps/nutriphi
|
|
|
|
# Copy entrypoint script
|
|
COPY apps/nutriphi/apps/backend/docker-entrypoint.sh /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
|
|
|
WORKDIR /app/apps/nutriphi/apps/backend
|
|
|
|
# Expose port
|
|
EXPOSE 3023
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD wget --no-verbose --tries=1 --spider http://localhost:3023/api/v1/health || exit 1
|
|
|
|
# Run entrypoint script
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
CMD ["node", "dist/main.js"]
|