Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 970 Bytes

File metadata and controls

30 lines (21 loc) · 970 Bytes

DockerfileConfig

Configuration for a dockerfile

Properties

Name Type Description Notes
build_args Dict[str, object] [optional]

Example

from cloudharness_model.models.dockerfile_config import DockerfileConfig

# TODO update the JSON string below
json = "{}"
# create an instance of DockerfileConfig from a JSON string
dockerfile_config_instance = DockerfileConfig.from_json(json)
# print the JSON string representation of the object
print(DockerfileConfig.to_json())

# convert the object into a dict
dockerfile_config_dict = dockerfile_config_instance.to_dict()
# create an instance of DockerfileConfig from a dict
dockerfile_config_from_dict = DockerfileConfig.from_dict(dockerfile_config_dict)

[Back to Model list] [Back to API list] [Back to README]