summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 71e5be13b355b79be8acad72a063eb44800412f6 (plain)
1
2
3
4
5
6
7
FROM debian:jessie

RUN apt-get update && apt-get -y install python

EXPOSE 25

CMD ["python", "-m", "smtpd", "-n", "-c", "DebuggingServer", "0.0.0.0:25"]