Skip to content

Commit 1419216

Browse files
authored
use a neutral base image
1 parent 7523d26 commit 1419216

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/spec-node/devContainersSpecCLI.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ const mountRegex = /^type=(bind|volume),source=([^,]+),target=([^,]+)(?:,externa
6262
function featuresTestOptions(y: Argv) {
6363
return y
6464
.options({
65-
'base-image': { type: 'string', alias: 'i', default: 'mcr.microsoft.com/vscode/devcontainers/base:focal', description: 'Base Image' },
65+
'base-image': { type: 'string', alias: 'i', default: 'ubuntu:focal', description: 'Base Image' },
6666
'features': { type: 'string', alias: 'f', describe: 'Feature(s) to test. Can be supplied many times in desired sequence.', },
6767
'remote-user': { type: 'string', alias: 'u', default: 'root', describe: 'Remote user', },
6868
'collection-folder': { type: 'string', alias: 'c', default: '.', description: 'Path to folder containing \'src\' and \'test\' sub-folders.' },
69-
'log-level': { choices: ['info' as 'info', 'debug' as 'debug', 'trace' as 'trace'], default: 'info' as 'info', description: 'Log level.' },
69+
'log-level': { choices: ['info' as 'info', 'debug' as 'debug', 'trace' as 'trace'], default: 'trace' as 'trace', description: 'Log level.' },
7070
});
7171
}
7272

0 commit comments

Comments
 (0)