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