Skip to content

Commit 4ef0e66

Browse files
committed
fix publish image
1 parent 9935c7d commit 4ef0e66

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ COPY . /app/
5151

5252
# Precompile assets after copying app because whole Rails pipeline is needed.
5353
RUN if [ "$RAILS_ENV" != 'development' ] && [ "$RAILS_ENV" != 'test' ]; then \
54-
SECRET_KEY_BASE_DUMMY=1 bundle exec rails assets:precompile --trace; \
54+
SECRET_KEY_BASE_DUMMY=1 bundle exec rails assets:precompile; \
5555
else \
5656
echo "Skipping assets:precompile"; \
5757
fi

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ GEM
118118
coderay (1.1.3)
119119
colorize (1.1.0)
120120
concurrent-ruby (1.3.6)
121-
connection_pool (3.0.2)
121+
connection_pool (2.5.5)
122122
crass (1.0.6)
123123
cssbundling-rails (1.4.3)
124124
railties (>= 6.0.0)

config/application.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
# you've limited to :test, :development, or :production.
77
Bundler.require(*Rails.groups)
88

9-
# Ensure connection_pool 3.x compatibility for early cache store setup
10-
require_relative 'initializers/connection_pool_compat'
11-
129
module Sofia
1310
class Application < Rails::Application
1411
# Initialize configuration defaults for originally generated Rails version.

0 commit comments

Comments
 (0)