mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Use Ruby 3.1 in our Dockerfile (#2802)
Ruby 2.6 reaches EoL soon. [ci skip]
This commit is contained in:
parent
aec9fb315a
commit
4bfdbb736d
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue