MailHog/Dockerfile

12 lines
150 B
Text
Raw Normal View History

2014-10-29 17:01:13 +00:00
FROM ubuntu:14.04
EXPOSE 1025
EXPOSE 8025
RUN apt-get update -qq
RUN apt-get install -qqy ca-certificates
2014-11-23 15:56:18 +00:00
ADD MailHog /tmp/
2014-10-29 17:01:13 +00:00
2014-11-23 15:56:18 +00:00
CMD ["./tmp/MailHog"]