smtp-bridge/.build/Dockerfile

10 lines
148 B
Docker
Raw Permalink Normal View History

2024-09-21 02:20:24 +05:00
FROM python:3.11-slim
WORKDIR /app
COPY relay.py .
2024-09-21 05:45:26 +05:00
RUN pip install --no-cache-dir aiosmtpd python-telegram-bot httpx
2024-09-21 02:20:24 +05:00
CMD ["python", "relay.py"]