From fa075471383a66b0479ccd2dec82f832416b3e3f Mon Sep 17 00:00:00 2001 From: Tom Robinson Date: Fri, 29 Nov 2024 13:35:30 -0500 Subject: [PATCH] Adds containerBase to the fre make platform for containers --- FRE/fre_make.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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" } } }