From 139d70fd5d9ab474edae76d8902b80a687d55588 Mon Sep 17 00:00:00 2001 From: Stefano Stabellini Date: Tue, 7 Nov 2017 17:50:45 -0800 Subject: [PATCH] Add sleep script as a workaround to save a Docker image It will be used to start the container "sleeping", so that we can use docker export and extract a rootfs from it. Signed-off-by: Stefano Stabellini --- dockerfiles/sleep | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 dockerfiles/sleep diff --git a/dockerfiles/sleep b/dockerfiles/sleep new file mode 100644 index 0000000..03f26ac --- /dev/null +++ b/dockerfiles/sleep @@ -0,0 +1,4 @@ +#!/bin/bash + +/bin/sleep 60 + -- 2.39.5