diff --git a/schema/test/config/good/minimal-for-start.json b/schema/test/config/good/minimal-for-start.json new file mode 100644 index 000000000..09379d1e9 --- /dev/null +++ b/schema/test/config/good/minimal-for-start.json @@ -0,0 +1,20 @@ +{ + "ociVersion": "1.0.0", + "platform": { + "os": "linux", + "arch": "amd64" + }, + "root": { + "path": "rootfs" + }, + "process": { + "cwd": "/", + "args": [ + "sh" + ], + "user": { + "uid": 0, + "gid": 0 + } + } +} diff --git a/schema/test/config/good/minimal.json b/schema/test/config/good/minimal.json index 4d8f177a3..b1f4f2f33 100644 --- a/schema/test/config/good/minimal.json +++ b/schema/test/config/good/minimal.json @@ -6,13 +6,5 @@ }, "root": { "path": "rootfs" - }, - "process": { - "cwd": "/", - "args": ["sh"], - "user": { - "uid": 0, - "gid": 0 - } } }