-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rails 8 to tests and loosen dependency in gemspec
- Loading branch information
1 parent
92eb70c
commit e8c9305
Showing
4 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
FROM ruby:3.2-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 8.0.0 | ||
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters