npmci/dist/npmci.build.docker.d.ts

18 lines
442 B
TypeScript
Raw Normal View History

2016-06-04 21:20:39 +00:00
export declare let build: () => any;
2016-06-05 02:48:39 +00:00
export declare class Dockerfile {
filePath: string;
buildTag: string;
repo: string;
version: string;
content: string;
baseImage: string;
constructor(options: {
filePath?: string;
fileContents?: string | Buffer;
read?: boolean;
});
build(): void;
push(): void;
}
export declare let dockerTag: (repoArg: string, versionArg: string) => string;