roda-sequel-postgres.dockerfile 271 B

123456789101112
  1. FROM ruby:2.7
  2. ADD ./ /roda-sequel
  3. WORKDIR /roda-sequel
  4. RUN bundle install --jobs=4 --gemfile=/roda-sequel/Gemfile --path=/roda-sequel/roda-sequel/bundle
  5. ENV DBTYPE=postgresql
  6. EXPOSE 8080
  7. CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080 -e production