7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
export type ImageMetadata = {
|
|
workdir: string;
|
|
user: string;
|
|
entrypoint: Array<string> | null;
|
|
cmd: Array<string> | null;
|
|
};
|