dockerfile-rails
dockerfile-rails copied to clipboard
Provides a Rails generator to produce Dockerfiles and related files.
In some cases (when grover is present for exemple) we need a node runtime to be able to launch some JS deps from ruby. But, when no node runtime is...
Ideally the dockerfile rails generator will have no unintentional differences from the files produced by `rails new`. Here are the current differences with Rails 7.2.0 beta 2: Dockerfile: ```diff diff...
My current `.dockerignore` file is vast. Possibly with a couple of relicts, but I want to carry over parts of it. I don't expect dockerfile-rails to expose every minor edge...
Adding the parameter ‘--precompile=defer’ an invalid Dockerfile is created. ```bash $ rails generate dockerfile --precompile=defer ... Dockerfile:27 -------------------- 25 | 26 | 27 | >>> FROM prebuild as node 28...