Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Rails 5.2 Docker image #194

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion meta_request/Dockerfile-rails-5.2
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 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 @@ -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