File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM ruby:3.1.2 -slim
1
+ FROM ruby:3.4 -slim
2
2
ENV LANG C.UTF-8
3
3
4
4
RUN apt-get update -qq && apt-get install -yq --no-install-recommends \
@@ -9,7 +9,8 @@ RUN apt-get update -qq && apt-get install -yq --no-install-recommends \
9
9
telnet \
10
10
nodejs \
11
11
npm \
12
- python \
12
+ python3 \
13
+ libsqlite3-dev \
13
14
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
14
15
15
16
RUN apt-get update -qq && apt-get install -y libpq-dev
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
3
3
4
4
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
5
- gem 'rails' , '~> 6.1.3 '
5
+ gem 'rails' , '~> 7.1 '
6
6
# Use sqlite3 as the database for Active Record
7
7
gem 'sqlite3'
8
8
# Use Puma as the app server
Original file line number Diff line number Diff line change 9
9
module Playground
10
10
class Application < Rails ::Application
11
11
# Initialize configuration defaults for originally generated Rails version.
12
- config . load_defaults 6 .1
12
+ config . load_defaults 7 .1
13
13
14
14
# Configuration for the application, engines, and railties goes here.
15
15
#
You can’t perform that action at this time.
0 commit comments