Fix buildah issue of using overlay as storage driver

Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
divyansh42 2021-04-08 17:37:32 +05:30
parent 65f18d484c
commit 67f10fa66b
9 changed files with 81 additions and 14 deletions

View file

@ -16,6 +16,9 @@ export async function run(): Promise<void> {
// print buildah version
await cli.execute([ "version" ]);
// Check if fuse-overlayfs exists and find the storage driver
await cli.checkFuseOverlayfs();
const DEFAULT_TAG = "latest";
const workspace = process.env.GITHUB_WORKSPACE || process.cwd();
const dockerFiles = getInputList(Inputs.DOCKERFILES);