libertyforward/Dockerfile

7 lines
233 B
Docker

FROM python:alpine
WORKDIR /usr/src/app
RUN pip install --no-cache requests configargparse xdg https://github.com/aio-libs/aiosmtpd/archive/refs/heads/master.zip
COPY ./mailforward.py .
CMD ["python", "/usr/src/app/mailforward.py"]