Skip to content

Commit

Permalink
Dockerfile for minimal repros: use Ruby 3.2, expect bundler installed
Browse files Browse the repository at this point in the history
  • Loading branch information
olleolleolle committed Oct 2, 2023
1 parent 9348f63 commit d051bc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Use this Dockerfile to create minimal reproductions of issues

FROM ruby:3.1
FROM ruby:3.2

# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1

WORKDIR /usr/src/app

COPY . .
RUN gem install bundler

RUN bundle install
RUN bundle exec rake compile

Expand Down

0 comments on commit d051bc3

Please sign in to comment.