Created
November 9, 2017 04:09
-
-
Save dakatsuka/1b146b03908265b39045c6f4ba7a47af to your computer and use it in GitHub Desktop.
mailcatcher
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:2.4.1-alpine | |
RUN apk --no-cache --update add \ | |
libstdc++ \ | |
build-base \ | |
openssl-dev \ | |
sqlite \ | |
sqlite-dev \ | |
ruby-dev && \ | |
gem install mailcatcher && \ | |
apk del build-base ruby-dev && \ | |
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* | |
EXPOSE 1025 1080 | |
CMD ["mailcatcher", "-f", "--ip=0.0.0.0"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment