Skip to content

Commit

Permalink
Merge pull request #2 from tim-kuntz/fix-builds
Browse files Browse the repository at this point in the history
Fix the Docker build errors
  • Loading branch information
tim-kuntz authored Apr 4, 2024
2 parents de081f7 + 97d1e3a commit 09cd441
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion meta_request/Dockerfile-rails-5.2
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ RUN apk add --update --no-cache \
RUN mkdir /app /gem
WORKDIR /app

RUN gem update --system
RUN gem update --system 3.4.22
RUN bundle config force_ruby_platform true
RUN gem install rails -v 5.2.3
RUN rails new .

Expand Down
3 changes: 2 additions & 1 deletion meta_request/Dockerfile-rails-6.0
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ RUN apk add --update --no-cache \
RUN mkdir /app /gem
WORKDIR /app

RUN gem update --system
RUN gem update --system 3.4.22
RUN bundle config force_ruby_platform true
RUN gem install rails -v 6.0.6
RUN rails new .

Expand Down
3 changes: 2 additions & 1 deletion meta_request/Dockerfile-rails-6.1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ RUN apk add --update --no-cache \
RUN mkdir /app /gem
WORKDIR /app

RUN gem update --system
RUN gem update --system 3.4.22
RUN bundle config force_ruby_platform true
RUN gem install rails -v 6.1.7
RUN rails new .

Expand Down
3 changes: 2 additions & 1 deletion meta_request/Dockerfile-rails-7.0
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ RUN apk add --update --no-cache \
RUN mkdir /app /gem
WORKDIR /app

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

Expand Down

0 comments on commit 09cd441

Please sign in to comment.