github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/examples/ruby/rideshare/Dockerfile (about)

     1  FROM ruby:3.2.1
     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  CMD [ "ruby", "lib/server.rb" ]