mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 22:34:04 +00:00
11 lines
156 B
Docker
11 lines
156 B
Docker
FROM ubuntu:14.04
|
|
|
|
EXPOSE 1025
|
|
EXPOSE 8025
|
|
|
|
RUN apt-get update -qq
|
|
RUN apt-get install -qqy ca-certificates
|
|
|
|
ADD Go-MailHog /tmp/
|
|
|
|
CMD ["./tmp/Go-MailHog"]
|