diff --git a/src/vm.ts b/src/vm.ts index 6f95b6e..4fdebbd 100644 --- a/src/vm.ts +++ b/src/vm.ts @@ -80,8 +80,8 @@ async function createContainer(home: string): Promise { /** Install base system packages (as root). */ async function installPackages(cached: boolean): Promise { const packages = cached - ? "curl git fish make" - : "curl git fish unzip make" + ? "curl git fish build-essential" + : "curl git fish unzip build-essential" await run( $`container exec ${CONTAINER_NAME} bash -c ${`apt update && apt install -y ${packages}`}`, "Package installation")