Skip to content

Commit 8302832

Browse files
authored
use a neutral base image
1 parent 59c9228 commit 8302832

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
@@ -63,11 +63,11 @@ const mountRegex = /^type=(bind|volume),source=([^,]+),target=([^,]+)(?:,externa
6363
function featuresTestOptions(y: Argv) {
6464
return y
6565
.options({
66-
'base-image': { type: 'string', alias: 'i', default: 'mcr.microsoft.com/vscode/devcontainers/base:focal', description: 'Base Image' },
66+
'base-image': { type: 'string', alias: 'i', default: 'ubuntu:focal', description: 'Base Image' },
6767
'features': { type: 'string', alias: 'f', describe: 'Feature(s) to test. Can be supplied many times in desired sequence.', },
6868
'remote-user': { type: 'string', alias: 'u', default: 'root', describe: 'Remote user', },
6969
'collection-folder': { type: 'string', alias: 'c', default: '.', description: 'Path to folder containing \'src\' and \'test\' sub-folders.' },
70-
'log-level': { choices: ['info' as 'info', 'debug' as 'debug', 'trace' as 'trace'], default: 'info' as 'info', description: 'Log level.' },
70+
'log-level': { choices: ['info' as 'info', 'debug' as 'debug', 'trace' as 'trace'], default: 'trace' as 'trace', description: 'Log level.' },
7171
});
7272
}
7373

0 commit comments

Comments
 (0)