From be5432ab18316f4475e287ae6f206e613a6cf231 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 5 Jun 2020 17:11:27 +0200 Subject: [PATCH] TT#82852 Dockerfile: ensure to have procps present Otherwise execution of FAI might fail: | Calling task_faiend | /usr/lib/fai/subroutines: line 142: ps: command not found | [...] This is supposed to be fixed with FAI 5.9.4, while version 5.8.4 suffers from this bug, so until >=5.9.4 is available in buster/stable let's fix this via an explicit dependency. Change-Id: I99490f263d1b2a1aec65f55feebe429b62628918 --- grml_build/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grml_build/Dockerfile b/grml_build/Dockerfile index 8c2f86c..88ebadd 100644 --- a/grml_build/Dockerfile +++ b/grml_build/Dockerfile @@ -5,7 +5,7 @@ FROM docker.mgm.sipwise.com/sipwise-buster:latest # is updated with the current date. It will force refresh of all # of the base images and things like `apt-get update` won't be using # old cached versions when the Dockerfile is built. -ENV REFRESHED_AT 2020-06-04 +ENV REFRESHED_AT 2020-06-05 # tools for building and testing RUN apt-get update && apt-get install --assume-yes --no-install-recommends \ @@ -25,6 +25,7 @@ RUN apt-get update && apt-get install --assume-yes --no-install-recommends \ moreutils \ mtools \ pciutils \ + procps \ qemu-system-x86 \ rsync \ socat \