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"]