The code powering m.abunchtell.com https://m.abunchtell.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

16 rader
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