-
Notifications
You must be signed in to change notification settings - Fork 508
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update gems. Don't generate docs when building image.
- Loading branch information
1 parent
230c7a7
commit 69a9fe1
Showing
4 changed files
with
60 additions
and
61 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 |
---|---|---|
|
@@ -18,7 +18,7 @@ RUN apt-get update && \ | |
sudo && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
echo "gem: --no-document" > /root/.gemrc && \ | ||
gem install bundler:2.0.2 && \ | ||
gem install bundler:2.1.4 && \ | ||
npm install -g --unsafe-perm [email protected] | ||
|
||
EXPOSE 3000 | ||
|
@@ -29,7 +29,6 @@ COPY Gemfile* ./ | |
RUN RAILS_ENV=production bundle | ||
|
||
COPY . . | ||
RUN ./scripts/prod-gen-api-docs | ||
|
||
CMD ["./scripts/run-server"] | ||
|
||
|
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '~> 5.0.0' | ||
gem 'pg', '~> 0.18' | ||
gem 'pg', '~> 1.2.2' | ||
|
||
gem 'active_model_serializers', '~> 0.10.2' | ||
gem 'enumerations', '~> 2.1' | ||
gem 'pry-byebug', '~> 3.4' | ||
gem 'active_model_serializers', '~> 0.10.10' | ||
gem 'enumerations', '~> 2.3.3' | ||
gem 'pry-byebug', '~> 3.7.0' | ||
gem 'pry-rails', '~> 0.3.9' | ||
gem 'puma', '~> 3.12' | ||
gem 'rack-cors', require: 'rack/cors' | ||
gem 'puma', '~> 4.3.1' | ||
gem 'rack-cors', '~> 1.1.1' | ||
gem 'resque', '~> 2.0.0' | ||
gem 'will_paginate', '~> 3.1' | ||
gem 'will_paginate', '~> 3.2.1' | ||
|
||
group :development do | ||
gem 'annotate', '~> 2.7' | ||
gem 'listen', '~> 3.1' | ||
gem 'annotate', '~> 3.0.3' | ||
gem 'listen', '~> 3.2.1' | ||
end |
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