FROM python:3.11-slim
WORKDIR /app
COPY backend/app /app
RUN pip install --no-cache-dir fastapi uvicorn prometheus-client pydantic
EXPOSE 8024
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8024"]
