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

12 lines (11 loc) 380 B
export interface ApkInstalledPackageInfo { packageName?: string; directories: string[]; files: string[]; } export declare class ApkInstalledDatabaseParser { #private; packagesMap: Map<string, ApkInstalledPackageInfo>; addLine(line: string): void; } export declare const readApkInstalledDatabase: (mountPath: string) => Promise<ApkInstalledDatabaseParser>;