Skip to content

Commit

Permalink
Fix Rails 6.x Docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-kuntz committed Apr 4, 2024
1 parent b49f45f commit 8457cfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion meta_request/Dockerfile-rails-6.0
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM ruby:2.6-alpine
RUN apk add --update --no-cache \
build-base \
curl-dev \
gcompat \
git \
nodejs \
shared-mime-info \
Expand All @@ -15,7 +16,7 @@ RUN apk add --update --no-cache \
RUN mkdir /app /gem
WORKDIR /app

RUN gem update --system
RUN gem update --system 3.4.22
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 @@ -3,6 +3,7 @@ FROM ruby:2.6-alpine
RUN apk add --update --no-cache \
build-base \
curl-dev \
gcompat \
git \
nodejs \
shared-mime-info \
Expand All @@ -15,7 +16,7 @@ RUN apk add --update --no-cache \
RUN mkdir /app /gem
WORKDIR /app

RUN gem update --system
RUN gem update --system 3.4.22
RUN gem install rails -v 6.1.7
RUN rails new .

Expand Down

0 comments on commit 8457cfd

Please sign in to comment.