diff --git a/README.md b/README.md index 735f363..b37c4d0 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ This assumes you are running on a Ubuntu system. Install some host side utilities ``` -sudo apt update -sudo apt install -y \ +sudo apt-get update +sudo apt-get install -y --no-install-recommends \ iperf3 \ jq \ hwloc-nox diff --git a/prep/qemu/Dockerfile b/prep/qemu/Dockerfile index 9f7f6f4..40eeda5 100644 --- a/prep/qemu/Dockerfile +++ b/prep/qemu/Dockerfile @@ -1,7 +1,9 @@ FROM ubuntu:18.04 -RUN apt update && \ - apt install -y \ +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + apt-utils \ + ca-certificates \ build-essential \ git \ libtool \ @@ -76,7 +78,7 @@ RUN ./configure \ RUN make -j "$(getconf _NPROCESSORS_ONLN)" -RUN apt install -y seabios +RUN apt-get install -y --no-install-recommends seabios RUN mkdir -p /res/bios && \ cp x86_64-softmmu/qemu-system-x86_64 /res && \