We migrated our app from Rails 4 to Rails 5. We run it inside Docker. On our host system we of course have the git binaries, but not inside Docker. Running Puma inside Docker will give this error message, and I would like to get rid of it:
bin/rails: No such file or directory - git
Rspec will give this error message:
/usr/local/bundle/bin/rspec: No such file or directory - git
What gem has the dependency on git? Or is it one of the core Rails gems and should I just ignore the error message?
git
the program issue it would look for./.git
not./git
(one dot missing) – Gristede