Seed the database with Pokemon game data for 5 games (FireRed, LeafGreen, Emerald, HeartGold, SoulSilver) using pokebase. Includes Alembic migrations for route unique constraints and encounter level ranges, a two-phase seed system (offline fetch to JSON, then idempotent upserts), and Dockerfile updates for the seed runner. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
524 B
Docker
22 lines
524 B
Docker
# Development Dockerfile for the backend API
|
|
FROM python:3.14-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Python dependencies
|
|
COPY pyproject.toml README.md alembic.ini ./
|
|
COPY src/ ./src/
|
|
|
|
RUN pip install --no-cache-dir -e .
|
|
|
|
# Expose port
|
|
EXPOSE 8000
|
|
|
|
# Run with hot reload for development
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload", "--app-dir", "src"]
|