Speeding up Docker image build process of a Rails application | BigBinary Blog - 1 views
-
we do not want to execute bundle install and rake assets:precompile tasks while starting a container in each pod which would prevent that pod from accepting any requests until these tasks are finished.
-
run bundle install and rake assets:precompile tasks while or before containerizing the Rails application.
-
Kubernetes pulls the image, starts a Docker container using that image inside the pod and runs puma server immediately.
- ...7 more annotations...