Skip to content

Commit

Permalink
Use Ruby 3.1 in our Dockerfile (puma#2802)
Browse files Browse the repository at this point in the history
Ruby 2.6 reaches EoL soon.

[ci skip]
  • Loading branch information
dentarg authored and JuanitoFatas committed Sep 9, 2022
1 parent befe9c8 commit 8427098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -156,7 +156,7 @@ bundle exec puma -C test/config/settings.rb test/rackup/hello.ru

There is also a Dockerfile available for reproducing Linux-specific issues:
```sh
docker build -f tools/docker/Dockerfile -t puma .
docker build -f tools/Dockerfile -t puma .
docker run -p 9292:9292 -it puma
```

Expand Down
2 changes: 1 addition & 1 deletion tools/Dockerfile
@@ -1,6 +1,6 @@
# Use this Dockerfile to create minimal reproductions of issues

FROM ruby:2.6
FROM ruby:3.1

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

0 comments on commit 8427098

Please sign in to comment.