Indeed. The internet these days is such a fundamental part of our society, I can't imagine server providers will be forced to shut down. We will find a solution in Europe, however costly it may be.
Has anyone come up with a way to speed up the "bundle install" step in a Docker build? The smallest change will cause this step to completely rerun, which takes a long time for a Ruby application with lots of gem dependencies.
One approach might be to base the final Docker image on another Docker image, which has a snapshot of all Rubygem dependencies at a certain point. In the depending image, the 'bundle install' will then do an incremental update and the Docker build will go a lot faster.
But I was wondering how other people are solving this?
That's awesome news! Does someone have an idea on how you would store dynamic data (think document oriented / json) and still run queries on the different fields?