smtp-bridge/.build/Dockerfile

10 lines
148 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY relay.py .
RUN pip install --no-cache-dir aiosmtpd python-telegram-bot httpx
CMD ["python", "relay.py"]