Configuration for a dockerfile
| Name | Type | Description | Notes |
|---|---|---|---|
| build_args | Dict[str, object] | [optional] |
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)