gitlab-org--gitlab-foss/lib/gitlab/ci/config/entry/image.rb
2016-11-14 10:31:45 +01:00

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