FROM python:3.11-alpine
RUN pip install --extra-index-url https://git.libertytechforce.com/api/packages/libertytechforce/pypi/simple/ http2smtp uvicorn[standard]
EXPOSE 8000
CMD ["uvicorn", "--host", "0.0.0.0", "--port", "8000", "--proxy-headers", "http2smtp.app:app"]