btcpaymailer/Dockerfile
Erling 41d264d8a5 Initial commit: BTCPay partial payment mailer
Flask webhook service that emails buyers via Postmark when BTCPay receives a partial payment.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-08 11:52:49 +02:00

7 lines
189 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app"]