Fix build and Dockerfile issues (#176)
* build: fix yarn corruption issues Closes #100 Thanks @zerdos * Dockerfile: add default Entrypoint and mount data dir Closes #170 Closes #78 Thanks @ay-b
This commit is contained in:
committed by
Kyle Carberry
parent
c471babc69
commit
f37533579d
@ -41,10 +41,7 @@ const handlePackages = async (dir: string): Promise<void> => {
|
||||
const pkgDir = join(dir, pkg);
|
||||
const pkgJsonPath = join(pkgDir, "package.json");
|
||||
if (existsSync(pkgJsonPath)) {
|
||||
const ip = doInstall(pkg, pkgDir);
|
||||
if (os.platform() === "win32") {
|
||||
await ip;
|
||||
}
|
||||
const ip = await doInstall(pkg, pkgDir);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user