debian-mirror-gitlab/lib/gitlab/ci/config/entry/image.rb
2017-08-17 22:00:37 +05:30

18 lines
312 B
Ruby

module Gitlab
module Ci
class Config
module Entry
##
# Entry that represents a Docker image.
#
class Image < Node
include Validatable
validations do
validates :config, type: String
end
end
end
end
end
end