Archived
1
0

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:
Anmol Sethi
2019-03-09 17:51:51 -05:00
committed by Kyle Carberry
parent c471babc69
commit f37533579d
3 changed files with 4 additions and 6 deletions

View File

@ -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);
}
}
};