From 8dea6617d7e4401e9b13756d5a98864b1acd4f13 Mon Sep 17 00:00:00 2001 From: Itxaka Date: Fri, 16 Jun 2023 11:56:00 +0200 Subject: [PATCH] :robot: Fix golang image not having qemu packages anymore (#1524) --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 8d617ac30..527e8ff87 100644 --- a/Earthfile +++ b/Earthfile @@ -789,7 +789,7 @@ run-qemu-netboot-test: ARG VERSION=$(cat VERSION) RUN apt update - RUN apt install -y qemu qemu-utils qemu-system git swtpm && apt clean + RUN apt install -y qemu-utils qemu-system git swtpm && apt clean # This is the IP at which qemu vm can see the host ARG IP="10.0.2.2"