The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
311 B

  1. FROM ruby:2.2.4
  2. ENV RAILS_ENV=production
  3. RUN apt-get update -qq && apt-get install -y build-essential libpq-dev
  4. RUN mkdir /mastodon
  5. WORKDIR /mastodon
  6. ADD Gemfile /mastodon/Gemfile
  7. ADD Gemfile.lock /mastodon/Gemfile.lock
  8. RUN bundle install --deployment --without test --without development
  9. ADD . /mastodon