| 123456789101112131415161718192021 |
- FROM ruby:3.5-rc
- ENV RUBY_YJIT_ENABLE=1
- # Use Jemalloc
- RUN apt-get update && \
- apt-get install -y --no-install-recommends libjemalloc2
- ENV LD_PRELOAD=libjemalloc.so.2
- ADD ./ /sinatra
- WORKDIR /sinatra
- ENV BUNDLE_WITH=postgresql:iodine
- RUN bundle install --jobs=4 --gemfile=/sinatra/Gemfile
- ENV APP_ENV=production
- ENV DBTYPE=postgresql
- EXPOSE 8080
- CMD bundle exec iodine -p 8080 -w $(ruby config/auto_tune.rb | grep -Eo '[0-9]+' | head -n 1)
|