UNPKG

buildahcker

Version:

Buildahcker is a node.js library to create and run commands in OCI (Open Container Initiative) container images (or docker images), based on Buildah and a hash-based cache. It also contains utilities to easily create a partitioned bootable disk image of a

9 lines (8 loc) 286 B
import type { OffsetAndSize } from "../partitions"; export interface GrubBiosSetupOptions { imageFile: string | number; partition: OffsetAndSize; bootFile: string; coreFile: string; } export declare const grubBiosSetup: (options: GrubBiosSetupOptions) => Promise<void>;