2016-03-14 20:39:39 +00:00
|
|
|
FROM ruby:2.2.4
|
|
|
|
|
|
|
|
ENV RAILS_ENV=production
|
|
|
|
|
2016-03-16 10:46:25 +00:00
|
|
|
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev && rm -rf /var/lib/apt/lists/*
|
2016-03-14 20:39:39 +00:00
|
|
|
RUN mkdir /mastodon
|
|
|
|
|
|
|
|
WORKDIR /mastodon
|
|
|
|
|
|
|
|
ADD Gemfile /mastodon/Gemfile
|
|
|
|
ADD Gemfile.lock /mastodon/Gemfile.lock
|
|
|
|
|
|
|
|
RUN bundle install --deployment --without test --without development
|
|
|
|
|
|
|
|
ADD . /mastodon
|
2016-03-16 10:18:09 +00:00
|
|
|
|
2016-03-16 11:57:01 +00:00
|
|
|
VOLUME ["/mastodon/public/system", "/mastodon/public/assets"]
|