# WARNING: Docker deployment is not officially supported (yet)
FROM python:3.14-slim
LABEL authors="Javelina"
COPY . /app/
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 8000/tcp
CMD ["uvicorn", "main:app"]