From 8a1cc5f0d6849a590e01d54f31fcc46588097310 Mon Sep 17 00:00:00 2001 From: usimd <11619247+usimd@users.noreply.github.com> Date: Sun, 25 Feb 2024 15:39:26 +0100 Subject: [PATCH] Reduce number of installed host packages --- src/host-dependencies.ts | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/host-dependencies.ts b/src/host-dependencies.ts index d0f2bf1..6281d78 100644 --- a/src/host-dependencies.ts +++ b/src/host-dependencies.ts @@ -1,11 +1,4 @@ export const hostDependencies = { - packages: [ - 'binfmt-support', - 'qemu-user-static', - 'qemu-utils', - 'nbd-server', - 'nbd-client', - 'openssh-client' - ], - modules: ['binfmt_misc', 'nbd'] + packages: ['binfmt-support', 'qemu-user-static'], + modules: ['binfmt_misc'] }