FROM python:3.13-alpine WORKDIR /app COPY . . RUN pip install . CMD ["hypercorn", "main:app", "--bind", "0.0.0.0:80"]