github.com/grafana/pyroscope@v1.18.0/examples/language-sdk-instrumentation/ruby/rideshare/Dockerfile (about)

     1  FROM ruby:3.3.9
     2  
     3  WORKDIR /opt/app
     4  
     5  COPY Gemfile ./Gemfile
     6  COPY Gemfile.lock ./Gemfile.lock
     7  # RUN bundle config set --local deployment true
     8  RUN bundle install
     9  
    10  COPY lib ./lib
    11  
    12  ENV APP_ENV=production
    13  
    14  CMD [ "ruby", "lib/server.rb" ]