Skip to content

Commit

Permalink
Remove references to webpacker
Browse files Browse the repository at this point in the history
webpacker:compile rake task is unnecessary in Dockerfile because assets:compile will automatically do the same work
check_yarn_integrity config option no longer exists
  • Loading branch information
cjcolvar committed Sep 25, 2023
1 parent 71c691c commit 9850c77
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ COPY --from=node-modules --chown=app:app /node_modules ./node_modules
USER app
ENV RAILS_ENV=production

RUN SECRET_KEY_BASE=$(ruby -r 'securerandom' -e 'puts SecureRandom.hex(64)') bundle exec rake webpacker:compile
RUN SECRET_KEY_BASE=$(ruby -r 'securerandom' -e 'puts SecureRandom.hex(64)') bundle exec rake assets:precompile
RUN cp config/controlled_vocabulary.yml.example config/controlled_vocabulary.yml

Expand Down
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Settings specified here will take precedence over those in config/application.rb.

# Verifies that versions and hashed value of the package contents in the project's package.json
config.webpacker.check_yarn_integrity = false
# config.webpacker.check_yarn_integrity = false

# Code is not reloaded between requests.
config.cache_classes = true
Expand Down

0 comments on commit 9850c77

Please sign in to comment.