From 549ccdb99b3ccd7394450f7cd2a87bfe96886fcc Mon Sep 17 00:00:00 2001 From: Usha Mandya Date: Fri, 30 Apr 2021 12:10:51 +0100 Subject: [PATCH] Clarify step on creating a bootstrap gemfile Signed-off-by: Usha Mandya --- samples/rails.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/samples/rails.md b/samples/rails.md index 40d5b1e95b..22a81c14a5 100644 --- a/samples/rails.md +++ b/samples/rails.md @@ -41,13 +41,12 @@ with Ruby, Bundler and all your dependencies inside it. For more information on how to write Dockerfiles, see the [Docker user guide](../get-started/index.md) and the [Dockerfile reference](/engine/reference/builder/). -Next, create a bootstrap `Gemfile` which just loads Rails. It'll be overwritten -in a moment by `rails new`. +Next, open an editor and create a bootstrap `Gemfile` which just loads Rails. This will be overwritten in a moment by `rails new`. source 'https://rubygems.org' gem 'rails', '~>5' -Create an empty `Gemfile.lock` to build our `Dockerfile`. +Create an empty `Gemfile.lock` file to build our `Dockerfile`. ```console $ touch Gemfile.lock