Skip to content

Commit

Permalink
Merge pull request #8 from vic778/upgrate
Browse files Browse the repository at this point in the history
Upgrate ruby versio and fix dep
  • Loading branch information
vic778 authored Sep 2, 2023
2 parents 6adee93 + 5c661b4 commit 6da708f
Show file tree
Hide file tree
Showing 228 changed files with 464 additions and 120 deletions.
Empty file modified .gitattributes
100644 → 100755
Empty file.
Empty file modified .github/workflows/linters.yml
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .rubocop.yml
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion .ruby-version
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.2
3.1.2
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM ruby:3.2.1

RUN apt-get update -qq \
&& apt-get install -yqq --non-install-recommends \
postgresql-client \
nodejs \
qt5-default \
libqt5webkit5-dev \
&& apt-get -q clean \
&& rm -rf /var/lib/apt/lists

WORKDIR /app
COPY Gemfile* ./
RUN bundle install
COPY . .

CMD bundle exec rails s -p 3000 -b '
2 changes: 1 addition & 1 deletion Gemfile
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.0.2'
ruby '3.1.2'

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 7.0.2', '>= 7.0.2.3'
Expand Down
Loading

0 comments on commit 6da708f

Please sign in to comment.