This commit is contained in:
parent
1ee5937b19
commit
4745b60149
4 changed files with 12 additions and 11 deletions
|
@ -1 +0,0 @@
|
||||||
3.3.6
|
|
|
@ -7,7 +7,7 @@
|
||||||
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
|
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
|
||||||
|
|
||||||
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
|
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
|
||||||
ARG RUBY_VERSION=3.3.6
|
ARG RUBY_VERSION=3.4.1
|
||||||
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
|
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
|
||||||
|
|
||||||
# Rails app lives here
|
# Rails app lives here
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -1,5 +1,7 @@
|
||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
ruby "3.4.1"
|
||||||
|
|
||||||
gem "rails", github: "rails/rails", branch: "main"
|
gem "rails", github: "rails/rails", branch: "main"
|
||||||
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
|
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
|
||||||
gem "propshaft"
|
gem "propshaft"
|
||||||
|
|
18
Gemfile.lock
18
Gemfile.lock
|
@ -165,6 +165,7 @@ GEM
|
||||||
marcel (1.0.4)
|
marcel (1.0.4)
|
||||||
matrix (0.4.2)
|
matrix (0.4.2)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.5)
|
||||||
|
mini_portile2 (2.8.8)
|
||||||
minitest (5.25.2)
|
minitest (5.25.2)
|
||||||
msgpack (1.7.5)
|
msgpack (1.7.5)
|
||||||
net-imap (0.5.1)
|
net-imap (0.5.1)
|
||||||
|
@ -177,11 +178,8 @@ GEM
|
||||||
net-smtp (0.5.0)
|
net-smtp (0.5.0)
|
||||||
net-protocol
|
net-protocol
|
||||||
nio4r (2.7.4)
|
nio4r (2.7.4)
|
||||||
nokogiri (1.16.7-aarch64-linux)
|
nokogiri (1.16.7)
|
||||||
racc (~> 1.4)
|
mini_portile2 (~> 2.8.2)
|
||||||
nokogiri (1.16.7-arm64-darwin)
|
|
||||||
racc (~> 1.4)
|
|
||||||
nokogiri (1.16.7-x86_64-linux)
|
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
parallel (1.26.3)
|
parallel (1.26.3)
|
||||||
parser (3.3.6.0)
|
parser (3.3.6.0)
|
||||||
|
@ -269,9 +267,8 @@ GEM
|
||||||
fugit (~> 1.11.0)
|
fugit (~> 1.11.0)
|
||||||
railties (>= 7.1)
|
railties (>= 7.1)
|
||||||
thor (~> 1.3.1)
|
thor (~> 1.3.1)
|
||||||
sqlite3 (2.3.1-aarch64-linux-gnu)
|
sqlite3 (2.3.1)
|
||||||
sqlite3 (2.3.1-arm64-darwin)
|
mini_portile2 (~> 2.8.0)
|
||||||
sqlite3 (2.3.1-x86_64-linux-gnu)
|
|
||||||
stimulus-rails (1.3.4)
|
stimulus-rails (1.3.4)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
stringio (3.1.2)
|
stringio (3.1.2)
|
||||||
|
@ -334,5 +331,8 @@ DEPENDENCIES
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
web-console
|
web-console
|
||||||
|
|
||||||
|
RUBY VERSION
|
||||||
|
ruby 3.4.1p0
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.5.23
|
2.6.2
|
||||||
|
|
Loading…
Reference in a new issue