Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Ruby 3.1 in our Dockerfile #2802

Merged
merged 1 commit into from Jan 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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