Skip to content

Commit

Permalink
Add rails 7.2 to test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiecobbett committed Oct 23, 2024
1 parent 844f09b commit d88fabf
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
36 changes: 36 additions & 0 deletions meta_request/Dockerfile-rails-7.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
FROM ruby:3.1-alpine

RUN apk add --update --no-cache \
build-base \
curl-dev \
git \
nodejs \
shared-mime-info \
sqlite-dev \
tzdata \
yaml-dev \
yarn \
zlib-dev

RUN mkdir /app /gem
WORKDIR /app

RUN gem update --system 3.5.7
RUN bundle config force_ruby_platform true
RUN gem install rails -v 7.2.1.1
RUN rails new .

COPY . /gem
RUN bundle add meta_request --path /gem
RUN bundle install

COPY res/routes.rb /app/config/
COPY res/dummy_controller.rb /app/app/controllers/
COPY res/dummy /app/app/views/dummy
COPY res/meta_request_test.rb /app/test/integration/

RUN bundle exec rails db:migrate

ENV PARALLEL_WORKERS 1

CMD ["bin/rake"]
4 changes: 4 additions & 0 deletions meta_request/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ services:
build:
context: .
dockerfile: Dockerfile-rails-7.1
test-rails-7.2:
build:
context: .
dockerfile: Dockerfile-rails-7.2

0 comments on commit d88fabf

Please sign in to comment.