diff --git a/FRE/fre_make.json b/FRE/fre_make.json index 44a153f..41ca72d 100644 --- a/FRE/fre_make.json +++ b/FRE/fre_make.json @@ -191,7 +191,11 @@ }, "RUNenv": { "description": "Commands needed at the beginning of a RUN in dockerfile", - "type": ["array"], + "anyOf": [ + {"type": "array"}, + {"type": "string"} + ], + "type": ["array", "string"], "items": {"type": "string"} }, "container": { @@ -205,6 +209,10 @@ "containerRun": { "description": "Program used to run the container", "type": "string" + }, + "containerBase": { + "description": "The base image used for the container", + "type": "string" } } }