FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir .
EXPOSE 8080
CMD ["uvicorn", "a_new_dawn.api:app", "--host", "0.0.0.0", "--port", "8080"]
