more updates
This commit is contained in:
parent
e675f9c2ac
commit
d6ff9fe367
4 changed files with 4 additions and 3 deletions
|
@ -4,6 +4,7 @@ RUN apt-get update -qq && apt-get install -y nodejs postgresql-client less bzip2
|
||||||
WORKDIR /data_importer
|
WORKDIR /data_importer
|
||||||
COPY Gemfile /data_importer/Gemfile
|
COPY Gemfile /data_importer/Gemfile
|
||||||
#COPY Gemfile.lock /data_importer/Gemfile.lock
|
#COPY Gemfile.lock /data_importer/Gemfile.lock
|
||||||
|
RUN bundle update
|
||||||
RUN bundle install
|
RUN bundle install
|
||||||
ENV PAGER=less
|
ENV PAGER=less
|
||||||
|
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -22,6 +22,7 @@ gem 'sass-rails'
|
||||||
gem 'tweetkit', github: 'julianfssen/tweetkit' # for twitter v2 api support
|
gem 'tweetkit', github: 'julianfssen/tweetkit' # for twitter v2 api support
|
||||||
gem 'twitter'
|
gem 'twitter'
|
||||||
gem 'mime-types-data', '~> 3.2024.0820'
|
gem 'mime-types-data', '~> 3.2024.0820'
|
||||||
|
gem 'listen', '3.0.8'
|
||||||
# Use postgres as the database for Active Record
|
# Use postgres as the database for Active Record
|
||||||
gem 'bulk_insert'
|
gem 'bulk_insert'
|
||||||
gem 'git'
|
gem 'git'
|
||||||
|
@ -67,7 +68,6 @@ end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
||||||
gem 'listen', '< 3.2'
|
|
||||||
gem 'web-console', '>= 3.3.0'
|
gem 'web-console', '>= 3.3.0'
|
||||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||||
gem 'spring'
|
gem 'spring'
|
||||||
|
|
|
@ -403,7 +403,7 @@ DEPENDENCIES
|
||||||
graphql
|
graphql
|
||||||
graphql-client
|
graphql-client
|
||||||
jbuilder (~> 2.5)
|
jbuilder (~> 2.5)
|
||||||
listen (< 3.2)
|
listen (= 3.0.8)
|
||||||
mime-types-data (~> 3.2024.0820)
|
mime-types-data (~> 3.2024.0820)
|
||||||
nokogiri
|
nokogiri
|
||||||
pg
|
pg
|
||||||
|
|
|
@ -59,5 +59,5 @@ Rails.application.configure do
|
||||||
|
|
||||||
# Use an evented file watcher to asynchronously detect changes in source code,
|
# Use an evented file watcher to asynchronously detect changes in source code,
|
||||||
# routes, locales, etc. This feature depends on the listen gem.
|
# routes, locales, etc. This feature depends on the listen gem.
|
||||||
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
#config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue