fix(core): update

This commit is contained in:
2023-07-01 22:05:43 +02:00
parent 4c07131e51
commit 5c5dbf303f
7 changed files with 102 additions and 5 deletions

View File

@@ -179,4 +179,12 @@ export class NpmciDockerManager {
await this.prepare();
return await Dockerfile.readDockerfiles(this).then(Dockerfile.testDockerfiles);
};
/**
* can be used to get the Dockerfiles in the directory
*/
getDockerfiles = async () => {
const dockerfiles = await Dockerfile.readDockerfiles(this);
return dockerfiles;
}
}