mirror of
https://github.com/moparisthebest/mailcatcher
synced 2024-10-31 15:35:07 -04:00
18655f41f2
Contribution from @thaJeztah
27 lines
496 B
Docker
27 lines
496 B
Docker
FROM ubuntu:trusty
|
|
MAINTAINER Paul Bowsher <paul.bowsher@gmail.com>
|
|
|
|
RUN apt-get update && apt-get install -y -q \
|
|
build-essential \
|
|
git \
|
|
libssl-dev \
|
|
libsqlite3-dev \
|
|
nodejs \
|
|
ruby-dev \
|
|
sqlite3 \
|
|
&& apt-get clean \
|
|
&& rm -r /var/lib/apt/lists/* \
|
|
&& gem install bundler --no-ri --no-rdoc
|
|
|
|
ADD . /app
|
|
WORKDIR /app
|
|
|
|
RUN bundle install
|
|
RUN bundle exec rake assets
|
|
|
|
EXPOSE 1025
|
|
EXPOSE 1080
|
|
|
|
ENTRYPOINT ["bundle", "exec", "mailcatcher", "-f"]
|
|
CMD ["--ip", "0.0.0.0"]
|