After 24 hours of trying to find the problem with my app. I finally found the problem.
I ran
rake assets:precompile RAILS_ENV=production
The simple solution was to add one simple line to my application.rb
config.assets.initialize_on_precompile = false
And everything works.