You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
253 B

10 years ago
10 years ago
10 years ago
  1. FROM ruby:2.2
  2. MAINTAINER Johannes Schickling "schickling.j@gmail.com"
  3. ADD install.sh install.sh
  4. RUN chmod +x install.sh && ./install.sh && rm install.sh
  5. # smtp port
  6. EXPOSE 1025
  7. # webserver port
  8. EXPOSE 1080
  9. CMD ["mailcatcher", "-f", "--ip=0.0.0.0"]