Removed ENABLE_BOOTSNAP environment variable

This commit is contained in:
Michal Migurski 2021-02-04 11:27:10 -08:00 committed by Michal Migurski
parent 7be797cbe2
commit a3e23096b3
2 changed files with 1 additions and 4 deletions

View file

@ -1,4 +1,4 @@
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
require "bundler/setup" # Set up gems listed in the Gemfile.
require "bootsnap/setup" if ENV.fetch("ENABLE_BOOTSNAP", "true") == "true" # Speed up boot time by caching expensive operations.
require "bootsnap/setup" # Speed up boot time by caching expensive operations.

View file

@ -14,9 +14,6 @@ services:
- web-images:/home/osm/images
ports:
- "3000:3000"
environment:
# https://github.com/Shopify/bootsnap/issues/262
ENABLE_BOOTSNAP: 'false'
command: bundle exec rails s -p 3000 -b '0.0.0.0'
depends_on:
- db