- Add pyproject.toml with project metadata and version 1.0.0 - Update config.py to load version from pyproject.toml - Update Dockerfile to include pyproject.toml in build - Add CHANGELOG.md documenting initial release - Update build workflow registry to internal domain 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
491 B
Docker
24 lines
491 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies (curl for healthcheck)
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Python dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application
|
|
COPY pyproject.toml .
|
|
COPY src/ ./src/
|
|
COPY static/ ./static/
|
|
|
|
ENV PYTHONPATH=/app
|
|
|
|
EXPOSE 8083
|
|
|
|
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8083", "--workers", "1"]
|