BigW Consortium Gitlab

dockerfile_template.rb 683 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
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")
      end

      class << self
        def extension
          'Dockerfile'
        end

        def categories
          {
            "General" => ''
          }
        end

        def base_dir
          Rails.root.join('vendor/dockerfile')
        end

        def finder(project = nil)
          Gitlab::Template::Finders::GlobalTemplateFinder.new(self.base_dir, self.extension, self.categories)
        end
      end
    end
  end
end