- Add Python FastAPI backend with Pydantic validation - Port WhiskClient and MetaAIClient to Python - Create API routers for all endpoints - Add Swagger/ReDoc documentation at /docs - Update Dockerfile for multi-service container - Add lib/api.ts frontend client - Update README for V3
95 lines
2.5 KiB
Docker
95 lines
2.5 KiB
Docker
# Stage 1: Build Next.js frontend
|
|
FROM node:20-alpine AS frontend-builder
|
|
WORKDIR /app
|
|
|
|
# Install dependencies
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm ci
|
|
|
|
# Copy source and build
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# Stage 2: Build Python backend
|
|
FROM python:3.11-slim AS backend-builder
|
|
WORKDIR /backend
|
|
|
|
# Install dependencies
|
|
COPY backend/requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy backend source
|
|
COPY backend/ ./
|
|
|
|
# Stage 3: Production image with supervisor
|
|
FROM python:3.11-slim AS runner
|
|
WORKDIR /app
|
|
|
|
# Install Node.js and supervisor
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
supervisor \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Create non-root user
|
|
RUN groupadd --system --gid 1001 appgroup \
|
|
&& useradd --system --uid 1001 --gid appgroup appuser
|
|
|
|
# Copy Next.js standalone build
|
|
COPY --from=frontend-builder /app/public ./public
|
|
COPY --from=frontend-builder /app/.next/standalone ./
|
|
COPY --from=frontend-builder /app/.next/static ./.next/static
|
|
|
|
# Copy Python backend
|
|
COPY --from=backend-builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
|
|
COPY --from=backend-builder /backend ./backend
|
|
|
|
# Copy data directory for prompts
|
|
COPY --from=frontend-builder /app/data ./data
|
|
|
|
# Create supervisor config
|
|
RUN mkdir -p /var/log/supervisor
|
|
COPY <<EOF /etc/supervisor/conf.d/supervisord.conf
|
|
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:nextjs]
|
|
command=node /app/server.js
|
|
directory=/app
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
environment=NODE_ENV=production,PORT=3000,HOSTNAME=0.0.0.0
|
|
|
|
[program:fastapi]
|
|
command=python -m uvicorn main:app --host 0.0.0.0 --port 8000
|
|
directory=/app/backend
|
|
autostart=true
|
|
autorestart=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
EOF
|
|
|
|
# Set permissions
|
|
RUN chown -R appuser:appgroup /app /var/log/supervisor
|
|
|
|
# Expose ports
|
|
EXPOSE 3000 8000
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:3000 && curl -f http://localhost:8000/health || exit 1
|
|
|
|
# Run supervisor
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
|