summaryrefslogtreecommitdiff
path: root/lib/gitlab/template/dockerfile_template.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/template/dockerfile_template.rb')
-rw-r--r--lib/gitlab/template/dockerfile_template.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/gitlab/template/dockerfile_template.rb b/lib/gitlab/template/dockerfile_template.rb
index 3b516bb862a..09643cfb619 100644
--- a/lib/gitlab/template/dockerfile_template.rb
+++ b/lib/gitlab/template/dockerfile_template.rb
@@ -3,9 +3,8 @@
module Gitlab
module Template
class DockerfileTemplate < BaseTemplate
- def content
- explanation = "# This file is a template, and might need editing before it works on your project."
- [explanation, super].join("\n")
+ def description
+ "# This file is a template, and might need editing before it works on your project."
end
class << self