12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
import { cubes } from '@bitsquare/nopy';
|
|
import { z } from 'zod';
|
|
|
|
export default cubes.Manifest({
|
|
id: 'runtime:docker',
|
|
name: 'Install docker and tools',
|
|
dependencies: () => [],
|
|
schema: z.object({
|
|
DISTRO: z.enum(['ubuntu', 'debian']).default('ubuntu').describe('Linux distribution to target'),
|
|
}),
|
|
});
|