diff --git a/Dockerfile b/Dockerfile index b84d416d1c..e55373aedf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,8 @@ RUN apt-get update && \ apt-get autoremove -y && \ cp config/database.postgres.docker.yml config/database.yml && \ gem install bundler && \ - bundle install --deployment && \ + bundle config set deployment 'true' && \ + bundle install && \ bundle exec rails assets:precompile CMD ["bundle","exec","rails","s"]