From c79a01b3f95450eedba3b4354334e1f3d55f3fa8 Mon Sep 17 00:00:00 2001 From: Julio Montes Date: Wed, 14 Aug 2019 17:57:26 +0000 Subject: [PATCH] static-build: upgrade the container before building qemu and nemu Upgrade the container before building qemu and nemu in order to install the latest fixes for the CVEs. fixes #676 Signed-off-by: Julio Montes --- static-build/nemu/Dockerfile | 2 +- static-build/qemu/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static-build/nemu/Dockerfile b/static-build/nemu/Dockerfile index f8c52f29e5..61ea52420b 100644 --- a/static-build/nemu/Dockerfile +++ b/static-build/nemu/Dockerfile @@ -12,7 +12,7 @@ ARG VIRTIOFSD ARG PREFIX WORKDIR /root/nemu -RUN apt-get update +RUN apt-get update && apt-get upgrade -y RUN apt-get install -y \ autoconf \ automake \ diff --git a/static-build/qemu/Dockerfile b/static-build/qemu/Dockerfile index 1bc492590a..3d79f853d0 100644 --- a/static-build/qemu/Dockerfile +++ b/static-build/qemu/Dockerfile @@ -6,7 +6,7 @@ ARG QEMU_VERSION ARG PREFIX WORKDIR /root/qemu -RUN apt-get update +RUN apt-get update && apt-get upgrade -y RUN apt-get install -y \ autoconf \ automake \