Minimal repo to start a dockerized Rails app from scratch without any local dependency.
Build the images
docker compose build
Enter into container to create the rails project
docker compose app bash
rails new .
Launch the container
docker compose up