python:3.12-slim, installs the package (pip install .), runs pending Alembic migrations before starting uvicorn. Migrations/alembic.ini/ scripts are copied in as-is (not part of the installed package) since alembic and generate_master_key.py run directly against the source tree. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
16 lines
297 B
Docker
16 lines
297 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY pyproject.toml ./
|
|
COPY app ./app
|
|
COPY migrations ./migrations
|
|
COPY alembic.ini ./
|
|
COPY scripts ./scripts
|
|
|
|
RUN pip install --no-cache-dir .
|
|
|
|
EXPOSE 8123
|
|
|
|
CMD ["/bin/sh", "-c", "alembic upgrade head && exec uvicorn app.main:app --host 0.0.0.0 --port 8123"]
|