File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55#
66# https://github.com/Code-With-Rails/rails-template
77#
8- # v1.0 .0
8+ # v1.1 .0
99#
1010# Intro: A simple, opinionated Rails template to set up your Rails project with a
1111# Docker development environment.
2828git commit : %( -m 'Initial commit' )
2929
3030file 'Dockerfile' , <<~CODE
31- FROM ruby:3.1.2 -bullseye
31+ FROM ruby:3.2.0 -bullseye
3232
3333 # Install apt based dependencies required to run Rails as
3434 # well as RubyGems. As the Ruby image itself is based on a
212212CODE
213213
214214# Update Ruby version in the Gemfile
215- gsub_file 'Gemfile' , /^ruby .*$/ , 'ruby \'3.1.2 \''
215+ gsub_file 'Gemfile' , /^ruby .*$/ , 'ruby \'3.2.0 \''
216216git add : '.'
217- git commit : '-a -m \'Use Ruby 3.1.2 in the Gemfile\''
217+ git commit : '-a -m \'Use Ruby 3.2.0 in the Gemfile\''
218218
219219# Add Procfile.dev
220220file 'Procfile.dev' , <<~CODE
You can’t perform that action at this time.
0 commit comments