Files
smtp-bridge/.build/Dockerfile
2024-09-21 02:20:24 +05:00

10 lines
142 B
Docker

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